Current Path : /storage/v11800/athomenoha/

Linux v11800 5.3.0-1023-aws #25~18.04.1-Ubuntu SMP Fri Jun 5 15:19:18 UTC 2020 aarch64

Upload File :
Current File : /storage/v11800/athomenoha/.db.sql
-- MariaDB dump 10.19  Distrib 10.6.9-MariaDB, for debian-linux-gnu (aarch64)
--
-- Host: localhost    Database: athomenohadb
-- ------------------------------------------------------
-- Server version	10.6.9-MariaDB-1:10.6.9+maria~ubu2004

/*!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 `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

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

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  `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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2023-06-20 07:06:35','2023-06-20 07:06:35','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://en.gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_e_events`
--

DROP TABLE IF EXISTS `wp_e_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_e_events`
--

LOCK TABLES `wp_e_events` WRITE;
/*!40000 ALTER TABLE `wp_e_events` DISABLE KEYS */;
INSERT INTO `wp_e_events` VALUES (1,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2023-06-20T12:43:19.343-06:30\"}','2023-06-20 12:43:19');
/*!40000 ALTER TABLE `wp_e_events` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

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

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

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

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','https://athomenoha.in8.cdn-alpha.com','yes'),(2,'home','https://athomenoha.in8.cdn-alpha.com','yes'),(3,'blogname','At Home Noha International','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','wp@dxpsites.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:172:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"elementskit-content/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"elementskit-content/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"elementskit-content/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"elementskit-content/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"elementskit-content/(.+?)/embed/?$\";s:52:\"index.php?elementskit_content=$matches[1]&embed=true\";s:38:\"elementskit-content/(.+?)/trackback/?$\";s:46:\"index.php?elementskit_content=$matches[1]&tb=1\";s:46:\"elementskit-content/(.+?)/page/?([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&paged=$matches[2]\";s:53:\"elementskit-content/(.+?)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&cpage=$matches[2]\";s:42:\"elementskit-content/(.+?)(?:/([0-9]+))?/?$\";s:58:\"index.php?elementskit_content=$matches[1]&page=$matches[2]\";s:56:\"servicecategory/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?sln_service_category=$matches[1]&feed=$matches[2]\";s:51:\"servicecategory/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?sln_service_category=$matches[1]&feed=$matches[2]\";s:32:\"servicecategory/([^/]+)/embed/?$\";s:53:\"index.php?sln_service_category=$matches[1]&embed=true\";s:44:\"servicecategory/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?sln_service_category=$matches[1]&paged=$matches[2]\";s:26:\"servicecategory/([^/]+)/?$\";s:42:\"index.php?sln_service_category=$matches[1]\";s:39:\"sln_service/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"sln_service/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"sln_service/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"sln_service/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"sln_service/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"sln_service/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"sln_service/([^/]+)/embed/?$\";s:44:\"index.php?sln_service=$matches[1]&embed=true\";s:32:\"sln_service/([^/]+)/trackback/?$\";s:38:\"index.php?sln_service=$matches[1]&tb=1\";s:40:\"sln_service/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?sln_service=$matches[1]&paged=$matches[2]\";s:47:\"sln_service/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?sln_service=$matches[1]&cpage=$matches[2]\";s:36:\"sln_service/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?sln_service=$matches[1]&page=$matches[2]\";s:28:\"sln_service/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"sln_service/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"sln_service/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"sln_service/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"sln_service/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"sln_service/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:41:\"sln_attendant/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"sln_attendant/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"sln_attendant/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"sln_attendant/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"sln_attendant/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"sln_attendant/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"sln_attendant/([^/]+)/embed/?$\";s:46:\"index.php?sln_attendant=$matches[1]&embed=true\";s:34:\"sln_attendant/([^/]+)/trackback/?$\";s:40:\"index.php?sln_attendant=$matches[1]&tb=1\";s:42:\"sln_attendant/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?sln_attendant=$matches[1]&paged=$matches[2]\";s:49:\"sln_attendant/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?sln_attendant=$matches[1]&cpage=$matches[2]\";s:38:\"sln_attendant/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?sln_attendant=$matches[1]&page=$matches[2]\";s:30:\"sln_attendant/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"sln_attendant/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"sln_attendant/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"sln_attendant/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"sln_attendant/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"sln_attendant/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"metform-form/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"metform-form/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"metform-form/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"metform-form/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"metform-form/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"metform-form/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"metform-form/(.+?)/embed/?$\";s:45:\"index.php?metform-form=$matches[1]&embed=true\";s:31:\"metform-form/(.+?)/trackback/?$\";s:39:\"index.php?metform-form=$matches[1]&tb=1\";s:39:\"metform-form/(.+?)/page/?([0-9]{1,})/?$\";s:52:\"index.php?metform-form=$matches[1]&paged=$matches[2]\";s:46:\"metform-form/(.+?)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?metform-form=$matches[1]&cpage=$matches[2]\";s:35:\"metform-form/(.+?)(?:/([0-9]+))?/?$\";s:51:\"index.php?metform-form=$matches[1]&page=$matches[2]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=167&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:9:{i:0;s:30:\"salon-booking-system/salon.php\";i:1;s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";i:2;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:3;s:23:\"elementor/elementor.php\";i:4;s:37:\"elementskit-lite/elementskit-lite.php\";i:5;s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";i:6;s:51:\"header-footer-elementor/header-footer-elementor.php\";i:7;s:19:\"metform/metform.php\";i:8;s:43:\"template-kit-import/template-kit-import.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','5.5','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','hello-elementor','yes'),(41,'stylesheet','hello-elementor','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','55853','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:1:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','167','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','165','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1702796795','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','53496','yes'),(100,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:120:{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:12:\"manage_salon\";b:1;s:21:\"manage_salon_settings\";b:1;s:36:\"export_reservations_csv_sln_calendar\";b:1;s:30:\"delete_permanently_sln_booking\";b:1;s:19:\"create_sln_bookings\";b:1;s:21:\"create_sln_attendants\";b:1;s:18:\"edit_sln_attendant\";b:1;s:18:\"read_sln_attendant\";b:1;s:20:\"delete_sln_attendant\";b:1;s:19:\"edit_sln_attendants\";b:1;s:26:\"edit_others_sln_attendants\";b:1;s:21:\"delete_sln_attendants\";b:1;s:22:\"publish_sln_attendants\";b:1;s:27:\"read_private_sln_attendants\";b:1;s:29:\"delete_private_sln_attendants\";b:1;s:31:\"delete_published_sln_attendants\";b:1;s:28:\"delete_others_sln_attendants\";b:1;s:27:\"edit_private_sln_attendants\";b:1;s:29:\"edit_published_sln_attendants\";b:1;s:16:\"edit_sln_service\";b:1;s:16:\"read_sln_service\";b:1;s:18:\"delete_sln_service\";b:1;s:17:\"edit_sln_services\";b:1;s:24:\"edit_others_sln_services\";b:1;s:19:\"delete_sln_services\";b:1;s:20:\"publish_sln_services\";b:1;s:25:\"read_private_sln_services\";b:1;s:27:\"delete_private_sln_services\";b:1;s:29:\"delete_published_sln_services\";b:1;s:26:\"delete_others_sln_services\";b:1;s:25:\"edit_private_sln_services\";b:1;s:27:\"edit_published_sln_services\";b:1;s:16:\"edit_sln_booking\";b:1;s:16:\"read_sln_booking\";b:1;s:18:\"delete_sln_booking\";b:1;s:17:\"edit_sln_bookings\";b:1;s:24:\"edit_others_sln_bookings\";b:1;s:19:\"delete_sln_bookings\";b:1;s:20:\"publish_sln_bookings\";b:1;s:25:\"read_private_sln_bookings\";b:1;s:27:\"delete_private_sln_bookings\";b:1;s:29:\"delete_published_sln_bookings\";b:1;s:26:\"delete_others_sln_bookings\";b:1;s:25:\"edit_private_sln_bookings\";b:1;s:27:\"edit_published_sln_bookings\";b:1;s:17:\"edit_sln_discount\";b:1;s:17:\"read_sln_discount\";b:1;s:19:\"delete_sln_discount\";b:1;s:18:\"edit_sln_discounts\";b:1;s:25:\"edit_others_sln_discounts\";b:1;s:20:\"delete_sln_discounts\";b:1;s:21:\"publish_sln_discounts\";b:1;s:26:\"read_private_sln_discounts\";b:1;s:28:\"delete_private_sln_discounts\";b:1;s:30:\"delete_published_sln_discounts\";b:1;s:27:\"delete_others_sln_discounts\";b:1;s:26:\"edit_private_sln_discounts\";b:1;s:28:\"edit_published_sln_discounts\";b:1;s:20:\"create_sln_resources\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:9:\"sln_staff\";a:2:{s:4:\"name\";s:11:\"Salon staff\";s:12:\"capabilities\";a:60:{s:12:\"manage_salon\";b:1;s:21:\"manage_salon_settings\";b:0;s:10:\"edit_posts\";b:1;s:36:\"export_reservations_csv_sln_calendar\";b:1;s:30:\"delete_permanently_sln_booking\";b:0;s:19:\"create_sln_bookings\";b:1;s:21:\"create_sln_attendants\";b:1;s:18:\"edit_sln_attendant\";b:1;s:18:\"read_sln_attendant\";b:1;s:20:\"delete_sln_attendant\";b:1;s:19:\"edit_sln_attendants\";b:1;s:26:\"edit_others_sln_attendants\";b:1;s:21:\"delete_sln_attendants\";b:1;s:22:\"publish_sln_attendants\";b:1;s:27:\"read_private_sln_attendants\";b:1;s:4:\"read\";b:1;s:29:\"delete_private_sln_attendants\";b:1;s:31:\"delete_published_sln_attendants\";b:1;s:28:\"delete_others_sln_attendants\";b:1;s:27:\"edit_private_sln_attendants\";b:1;s:29:\"edit_published_sln_attendants\";b:1;s:16:\"edit_sln_service\";b:1;s:16:\"read_sln_service\";b:1;s:18:\"delete_sln_service\";b:1;s:17:\"edit_sln_services\";b:1;s:24:\"edit_others_sln_services\";b:1;s:19:\"delete_sln_services\";b:1;s:20:\"publish_sln_services\";b:1;s:25:\"read_private_sln_services\";b:1;s:27:\"delete_private_sln_services\";b:1;s:29:\"delete_published_sln_services\";b:1;s:26:\"delete_others_sln_services\";b:1;s:25:\"edit_private_sln_services\";b:1;s:27:\"edit_published_sln_services\";b:1;s:16:\"edit_sln_booking\";b:1;s:16:\"read_sln_booking\";b:1;s:18:\"delete_sln_booking\";b:1;s:17:\"edit_sln_bookings\";b:1;s:24:\"edit_others_sln_bookings\";b:1;s:19:\"delete_sln_bookings\";b:1;s:20:\"publish_sln_bookings\";b:1;s:25:\"read_private_sln_bookings\";b:1;s:27:\"delete_private_sln_bookings\";b:1;s:29:\"delete_published_sln_bookings\";b:1;s:26:\"delete_others_sln_bookings\";b:1;s:25:\"edit_private_sln_bookings\";b:1;s:27:\"edit_published_sln_bookings\";b:1;s:17:\"edit_sln_discount\";b:1;s:17:\"read_sln_discount\";b:1;s:19:\"delete_sln_discount\";b:1;s:18:\"edit_sln_discounts\";b:1;s:25:\"edit_others_sln_discounts\";b:1;s:20:\"delete_sln_discounts\";b:1;s:21:\"publish_sln_discounts\";b:1;s:26:\"read_private_sln_discounts\";b:1;s:28:\"delete_private_sln_discounts\";b:1;s:30:\"delete_published_sln_discounts\";b:1;s:27:\"delete_others_sln_discounts\";b:1;s:26:\"edit_private_sln_discounts\";b:1;s:28:\"edit_published_sln_discounts\";b:1;}}s:12:\"sln_customer\";a:2:{s:4:\"name\";s:14:\"Salon customer\";s:12:\"capabilities\";a:6:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;s:13:\"publish_posts\";b:0;s:12:\"upload_files\";b:0;s:12:\"manage_salon\";b:0;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','1','no'),(103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:15:{i:1687244796;a:6:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s: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;}}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:1687244822;a:3:{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;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1687244825;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:1687244882;a:1:{s:28:\"wp_update_comment_type_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1687245193;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1687331196;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1687331223;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1687344007;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"686c8315be36c96dc00d0d7ed3656b43\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:6;}}}}i:1687344047;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"d63aca0b7e6237c7964320bd7fc95644\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:7;}}}}i:1687350491;a:1:{s:21:\"sln_clean_up_database\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1687357677;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"84e0a358324195cbeabd27a323343b93\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:244;}}}}i:1687746600;a:1:{s:23:\"sln_email_weekly_report\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1691613097;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1694578707;a:1:{s:34:\"elementor_1_elementor_updater_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:43:\"elementor_1_elementor_updater_cron_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'_transient_doing_cron','1717189636.3474600315093994140625','yes'),(128,'ai1wm_secret_key','Z5WMngwS7pCU','yes'),(129,'wp_cli_login','{\"endpoint\":\"22fd1e25\",\"version\":\"^1.2\"}','yes'),(133,'ai1wmue_plugin_key','1bebc005-bc23-4932-8b3f-1b4b72ee066a','yes'),(155,'WPLANG','','yes'),(156,'new_admin_email','wp@dxpsites.com','yes'),(164,'theme_mods_twentytwentythree','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1687245117;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(165,'current_theme','Hello Elementor','yes'),(166,'theme_mods_hello-elementor','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1687336881;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}}}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";s:0:\"\";}','yes'),(167,'theme_switched','','yes'),(168,'hello_theme_version','2.8.1','yes'),(174,'_site_transient_ai1wm_last_check_for_updates','1694967030','no'),(175,'ai1wm_updater','a:1:{s:43:\"all-in-one-wp-migration-unlimited-extension\";a:13:{s:4:\"name\";s:19:\"Unlimited Extension\";s:4:\"slug\";s:19:\"unlimited-extension\";s:8:\"homepage\";s:51:\"https://servmask.com/extensions/unlimited-extension\";s:13:\"download_link\";s:29:\"https://servmask.com/purchase\";s:7:\"version\";s:4:\"2.53\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:259:\"<ul class=\"description\"><li>Remove the import limit of 512MB</li><li>Lifetime license with lifetime updates</li><li>Use on any number of websites that you own</li><li>Unlimited Extension included</li><li>WP CLI commands</li><li>Premium support</li></ul><br />\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"https://servmask.com/img/products/unlimited-extension-772x250.png\";s:4:\"high\";s:66:\"https://servmask.com/img/products/unlimited-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:65:\"https://servmask.com/img/products/unlimited-extension-128x128.png\";s:2:\"2x\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";s:7:\"default\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:309;s:10:\"downloaded\";i:40189;}}','yes'),(176,'recently_activated','a:0:{}','yes'),(177,'template_kit_import_version','1.0.14','yes'),(178,'template_kit_import_install_time','1687245158','yes'),(182,'elementor_active_kit','9','yes'),(183,'elementor_font_display','swap','yes'),(186,'elementor_version','3.15.3','yes'),(187,'elementor_install_history','a:2:{s:6:\"3.14.0\";i:1687245195;s:6:\"3.15.3\";i:1694202113;}','yes'),(188,'elementor_events_db_version','1.0.0','no'),(189,'elementor_onboarded','1','yes'),(190,'_elementor_installed_time','1687245206','yes'),(191,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:19:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:19:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:19:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:19:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:19:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:19:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:19:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:19:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:19:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:19:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:19:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:19:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:19:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:19:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:19:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:19:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:19:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:19:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:19:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:19:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:19:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:19:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:19:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:19:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:19:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:19:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:19:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:19:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:19:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:19:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:19:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:19:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:19:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:19:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:19:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:19:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:19:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:19:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:19:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:19:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:19:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:19:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:19:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:19:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:19:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:19:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:19:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:19:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:19:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:19:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:19:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:19:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:19:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:19:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:19:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:19:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:19:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:19:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:19:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:19:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:19:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:19:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:19:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:19:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:19:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:19:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:19:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:19:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:19:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:19:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:19:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:19:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:19:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:19:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:19:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:19:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:19:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:19:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:19:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:19:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:19:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:19:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:19:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:19:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:19:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:19:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:19:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:19:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:19:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:19:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:19:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:19:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:19:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:19:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:19:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:19:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:19:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:19:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:19:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:19:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:19:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:19:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:19:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:19:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:19:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:19:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:19:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:19:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:19:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:19:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:19:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:19:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:19:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:19:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:19:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:19:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:19:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:19:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:19:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:19:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:19:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:19:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:19:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:19:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:19:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:19:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:19:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:19:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:19:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:19:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:19:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:19:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:19:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:19:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:19:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:19:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:19:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:19:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:19:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:19:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:19:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:19:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:19:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:19:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:19:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:19:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:19:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:19:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:19:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:19:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:19:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:19:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:19:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:19:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:19:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:19:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:19:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:19:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:19:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:19:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:19:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:19:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:19:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:19:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:19:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:19:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:19:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:19:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:19:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:19:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:19:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:19:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:19:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:19:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:19:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:19:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:19:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:19:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:19:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:19:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:19:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:19:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:19:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:19:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:19:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:19:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:19:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:19:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:19:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:19:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:19:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:19:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:19:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:19:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:19:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:19:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:19:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:19:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:19:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:19:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:19:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:19:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:19:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:19:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:19:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:19:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:19:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:19:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:19:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:19:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:19:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:19:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:19:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:19:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:19:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:19:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:19:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:19:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:19:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:19:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:19:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:19:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:19:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:19:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:19:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:19:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:19:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:19:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:19:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:19:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:19:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:19:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:19:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:19:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:19:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:19:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:19:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:19:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:19:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:19:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:19:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:19:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:19:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:19:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:19:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:19:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:19:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:19:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:19:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:19:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:19:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:19:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:19:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:19:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:19:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:19:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:19:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:19:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:19:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:19:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:19:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:19:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:19:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:19:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:19:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:19:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:19:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:19:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:19:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:19:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:19:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:19:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:19:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:19:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:19:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:19:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:19:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:19:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:19:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:19:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:19:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:19:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:19:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:19:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:19:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:19:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:19:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:19:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:19:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:19:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:19:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:19:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:19:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:19:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:19:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:19:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:19:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:19:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:19:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:19:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:19:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:19:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:19:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:19:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:19:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:19:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:19:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:19:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:19:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:19:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:19:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:19:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:19:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:19:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:19:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:19:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:19:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:19:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:19:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:19:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:19:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:19:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:19:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:19:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:19:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:19:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:19:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:19:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:19:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:19:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:19:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:19:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:19:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:19:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:19:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:19:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:19:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:19:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:19:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:19:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:19:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:19:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:19:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:19:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:19:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:19:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:19:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:19:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:19:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:19:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:19:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:19:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:19:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:19:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:19:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:19:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:19:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:19:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:19:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:19:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:19:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:19:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:19:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:19:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:19:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:19:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:19:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:19:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:19:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:19:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:19:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:19:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:19:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:19:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:19:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:19:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:19:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:19:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:19:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:19:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:19:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:19:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:19:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:19:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:19:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:19:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:19:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:19:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:19:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:19:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:19:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:19:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:19:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:19:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:19:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:19:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:19:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:19:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:19:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:19:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:19:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:19:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:19:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:19:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:19:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:19:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:19:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:19:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:19:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:19:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:19:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:19:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:19:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:19:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:19:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:19:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:19:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:19:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:19:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:19:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:19:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:19:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:19:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:19:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:19:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:19:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:19:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:19:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:19:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:19:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:19:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:19:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:19:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:19:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:19:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:19:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:19:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:19:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:19:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:19:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:19:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:19:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:19:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:19:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:19:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:19:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:19:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:19:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:19:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:19:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:19:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:19:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:19:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:19:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:19:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:19:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:19:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:19:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:19:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:19:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:19:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:19:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:19:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:19:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:19:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:19:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:19:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:19:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:19:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:19:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:19:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:19:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:19:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:19:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:19:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:19:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:19:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:19:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:19:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:19:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:19:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:19:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:19:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:19:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:19:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:19:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:19:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:19:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:19:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:19:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:19:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:19:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:19:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:19:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:19:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:19:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:19:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:19:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:19:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:19:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:19:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:19:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:19:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:19:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:19:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:19:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:19:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:19:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:19:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:19:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:19:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:19:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:19:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:19:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:19:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:19:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:19:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:19:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:19:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:19:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:19:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:19:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:19:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:19:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:19:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:19:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:19:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:19:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:19:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:19:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:19:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:19:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:19:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:19:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:19:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:19:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:19:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:19:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:19:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:19:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:19:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:19:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:19:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:19:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:19:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:19:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:19:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:19:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:19:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:19:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:19:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:19:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:19:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:19:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:19:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:19:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:19:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:19:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:19:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:19:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:19:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:19:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:19:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:19:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:19:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:19:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:19:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:19:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:19:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:19:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:19:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:19:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:19:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:19:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:19:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:19:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:19:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:19:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:19:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:19:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:19:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:19:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:19:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:19:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:19:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:19:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:19:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:19:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:19:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:19:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:19:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:19:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:19:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:19:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:19:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:19:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:19:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:19:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:19:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:19:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:19:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:19:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:19:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:19:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:19:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:19:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:19:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:19:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:19:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:19:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:19:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:19:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:19:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:19:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:19:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:19:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:19:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:19:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:19:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:19:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:19:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:19:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:19:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:19:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:19:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:19:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:19:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:19:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:19:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:19:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:19:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:19:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:19:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:19:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:19:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:19:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:19:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:19:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:19:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:19:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:19:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:19:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:19:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:19:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:19:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:19:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:19:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:19:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:19:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:19:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:19:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:19:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:19:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:19:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:19:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:19:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:19:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:19:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:19:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:19:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:19:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:19:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:19:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:19:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:19:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:19:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:19:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:19:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:19:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:19:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:19:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:19:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:19:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:19:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:19:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:19:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:19:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:19:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:19:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:19:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:19:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:19:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:19:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:19:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:19:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:19:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:19:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:19:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:19:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:19:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:19:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:19:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:19:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:19:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:19:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:19:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:19:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:19:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:19:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:19:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:19:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:19:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:19:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:19:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:19:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:19:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:19:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:19:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:19:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:19:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:19:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:19:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:19:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:19:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:19:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:19:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:19:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:19:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:19:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:19:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:19:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:19:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:19:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:19:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:19:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:19:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:19:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:19:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:19:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:19:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:19:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:19:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:19:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:19:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:19:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:19:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:19:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:19:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:19:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:19:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:19:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:19:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:19:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:19:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:19:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:19:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:19:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:19:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:19:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:19:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:19:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:19:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:19:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:19:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:19:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:19:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:19:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:19:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:19:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:19:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:19:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:19:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:19:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:19:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:19:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:19:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:19:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:19:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:19:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:19:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:19:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:19:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:19:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:19:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:19:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:19:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:19:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:19:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:19:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:19:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:19:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:19:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:19:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:19:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:19:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:19:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:19:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:19:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:19:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:19:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:19:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:19:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:19:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:19:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:19:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:19:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:19:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:19:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:19:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:19:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:19:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:19:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:19:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:19:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:19:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:19:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:19:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:19:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:19:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:19:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:19:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:19:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:19:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:19:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:19:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:19:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:19:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:19:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:19:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:19:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:19:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:19:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:19:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(192,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:73:\"AI 0.4 Release: Context Boosts A 58% Content Uplift for Improved Workflow\";s:7:\"excerpt\";s:163:\"Hitting creative walls & code roadblocks? Elementor AI\'s update creates a future where AI writes captivating copy with a 58% approval boost... what else can it do?\";s:7:\"created\";i:1716217283;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:155:\"https://elementor.com/blog/elementor-ai-enhanced-workflow-and-high-quality-results/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.21: Loop Taxonomy Query for Listings, Performance Improvements, and More!\";s:7:\"excerpt\";s:160:\"Version 3.21 includes the ability to build listings for your categories and tags and significant performance improvements alongside an exciting new AI feature. \";s:7:\"created\";i:1714559068;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:152:\"https://elementor.com/blog/elementor-321-taxonomy-query-performance-improvement/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:71:\"6 Best WordPress Image Optimization Plugins of 2024 (+Real Image Tests)\";s:7:\"excerpt\";s:116:\"Explore the top 6 WordPress image optimization plugins of 2024 for faster site speed and better SEO with real tests.\";s:7:\"created\";i:1712656602;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:126:\"https://elementor.com/blog/image-optimization-plugins/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(195,'hfe_plugin_is_activated','yes','yes'),(196,'_hfe_db_version','1.6.34','yes'),(197,'bsf_analytics_installed_time','1687245213','no'),(201,'elementskit-lite__banner_last_check','1694967037','yes'),(202,'elementskit-lite__banner_data','O:8:\"stdClass\":10:{s:8:\"10010506\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010506;s:5:\"title\";s:32:\"Wpmet Summer sale 2023 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010508\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010508;s:5:\"title\";s:31:\"Wpmet Summer sale 2023 own page\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010418\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010418;s:5:\"title\";s:32:\"Wpmet Summer Ownpage Notice 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1685577600;s:3:\"end\";i:1686787200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:26:\"https://wpmet.com/birthday\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:539:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Birthday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $221 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 45% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2023/06/notice.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10008094\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008094;s:5:\"title\";s:24:\"GetGenie Cross Promotion\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1678492800;s:3:\"end\";i:1688083200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:35:\"https://wpmet.com/getgenie-org-page\";s:11:\"button_text\";s:14:\"Get Yours Now!\";s:11:\"notice_body\";s:766:\"<h2>We are delighted to announce that <span style=\"color: #2471b1;\"><strong style=\"color: #2471b1; text-transform: uppercase; font-size: 14px;\">GetGenie AI is now available</strong></span>!</h2>\r\n<h4 style=\"font-size: 16px; margin-left: -2px;\"><b>Let&#039;s write your content 20x faster with AI. Also, Research </b><b>keywords</b><b>, A</b><b>nalyse your </b><b>competitors, head 2 Head analysis,  content writing with ai, and search engine ranking with NLP Keywords optimization—all within WordPress.</b> Additionally, <b>you can chat</b> with the GENIE AI about your needs.</h4>\r\n<span style=\"color: #dd0cd9;\">Join now and get <span style=\"font-weight: 400;\"><strong>1500 words for free every month</strong></span></span><span style=\"color: #dd0cd9;\">. </span>\";s:12:\"notice_image\";s:79:\"https://api.wpmet.com/auth/wp-content/uploads/2023/03/genie_compare_image_4.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:20:\"background: #e9fce5;\";s:10:\"unique_key\";s:20:\"getgenie-cross-promo\";}}s:8:\"10008085\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008085;s:5:\"title\";s:27:\"Wpmet Notice Dashboard 2022\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1671580800;s:3:\"end\";i:1673740800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/holiday22/notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:517:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Holiday Deals from Wpmet</span></strong> <br>\r\n<strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $1670 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social — or get them <b>all in super-saver bundles to save 70% instantly!\r\n</b></p>\";s:12:\"notice_image\";s:70:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/70-OFF-wpmet.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:7:\"bfc2022\";}}s:8:\"10008083\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008083;s:5:\"title\";s:25:\"Wpmet Notice Ownpage 2022\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1671580800;s:3:\"end\";i:1673740800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/holiday22/notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:519:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Holiday Deals from Wpmet. </span></strong> <br>\r\n<strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $1670 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social — or get them <b>all in super-saver bundles to save 70% instantly!\r\n</b></p>\";s:12:\"notice_image\";s:70:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/70-OFF-wpmet.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:7:\"bfc2022\";}}s:8:\"10007775\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007775;s:5:\"title\";s:17:\"August Flash Sale\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:7:\"plugins\";s:5:\"start\";i:1661385600;s:3:\"end\";i:1661904000;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:30:\"https://wpmet.com/flash/banner\";s:12:\"banner_image\";s:75:\"https://api.wpmet.com/auth/wp-content/uploads/2022/08/InPlugin-Banner-4.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:76:\"background-color: #00003E; display: block; height: 60px; text-align: center;\";s:10:\"unique_key\";s:15:\"AugustFlashSale\";}}s:8:\"10007416\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007416;s:5:\"title\";s:28:\"Wpmet 4th of July Flash Sale\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:8:\"all_page\";s:5:\"start\";i:1656806400;s:3:\"end\";i:1657065600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:603:\"ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins altogether and save 70% instantly! Happy 4th of July Flash Sale!!\r\n\r\n<a href=\"https://wpmet.com/4-july/notice\"><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Claim Your Discount →&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:1337857,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0,&quot;14&quot;:{&quot;1&quot;:2,&quot;2&quot;:1136076},&quot;16&quot;:10,&quot;17&quot;:1,&quot;21&quot;:1,&quot;23&quot;:1}\" data-sheets-hyperlink=\"https://wpmet.com/deals\">Claim Your Discount →</span></a>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2022/07/Notice.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:13:\"4thJulybanner\";}}s:8:\"10007174\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007174;s:5:\"title\";s:31:\"Wpmet Birthday Campaign Ownpage\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:8:\"all_page\";s:5:\"start\";i:1653868800;s:3:\"end\";i:1655942400;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:261:\"Wpmet\'s Birthday Sale is going on! Enjoy limited-time discounts of up to 50% on each of our PRO plugins — ElementsKit , ShopEngine, MetForm, WP Social, WP Ultimate Review. Hurry up!\r\n\r\n<a href=\"https://wpmet.com/notice/birthday-deal\">Get Your Discount →</a>\";s:12:\"notice_image\";s:76:\"https://api.wpmet.com/auth/wp-content/uploads/2022/05/InPlugin-Notice-50.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:14:\"birthdaybanner\";}}s:8:\"10007139\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007139;s:5:\"title\";s:31:\"Wpmet Summer Campaign Own Pages\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1650326400;s:3:\"end\";i:1651276800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:233:\"ElementsKit , ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins altogether and save 70% instantly throughout this Summer Sale!\r\n\r\n<a href=\"https://wpmet.com/notice/summer-sale\">Get Your Discount →</a>\";s:12:\"notice_image\";s:75:\"https://api.wpmet.com/auth/wp-content/uploads/2022/04/InPlugin-Notice-1.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:12:\"summerbanner\";}}}','yes'),(203,'elementskit-lite_install_date','2023-06-20 07:19:12','yes'),(209,'elementor_log','a:8:{s:32:\"1deb360f0b29fd94b685399987409da8\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-06-20 19:16:39\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:15:\"Uploading Kit: \";s:7:\"\0*\0meta\";a:2:{s:6:\"kit_id\";s:9:\"undefined\";s:8:\"referrer\";s:5:\"local\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-06-20 19:16:39\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:2:{s:6:\"kit_id\";s:9:\"undefined\";s:8:\"referrer\";s:5:\"local\";}s:7:\"message\";s:15:\"Uploading Kit: \";s:4:\"type\";s:4:\"info\";}}s:32:\"912718a38dc3828b5fae65a969fbbca5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-06-20 19:16:39\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:16:\"invalid-zip-file\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";s:1391:\"#0 /storage/v11800/noha/public_html/wp-content/plugins/elementor/app/modules/import-export/processes/import.php(155): Elementor\\App\\Modules\\ImportExport\\Processes\\Import->extract_zip(\'/tmp/php2cQs4I\')\n#1 /storage/v11800/noha/public_html/wp-content/plugins/elementor/app/modules/import-export/module.php(306): Elementor\\App\\Modules\\ImportExport\\Processes\\Import->__construct(\'/tmp/php2cQs4I\', Array)\n#2 /storage/v11800/noha/public_html/wp-content/plugins/elementor/app/modules/import-export/module.php(601): Elementor\\App\\Modules\\ImportExport\\Module->upload_kit(\'/tmp/php2cQs4I\', \'local\')\n#3 /storage/v11800/noha/public_html/wp-content/plugins/elementor/app/modules/import-export/module.php(528): Elementor\\App\\Modules\\ImportExport\\Module->handle_upload_kit()\n#4 /storage/v11800/noha/public_html/wp-content/plugins/elementor/app/modules/import-export/module.php(434): Elementor\\App\\Modules\\ImportExport\\Module->maybe_handle_ajax()\n#5 /storage/v11800/noha/public_html/wp-includes/class-wp-hook.php(308): Elementor\\App\\Modules\\ImportExport\\Module->Elementor\\App\\Modules\\ImportExport\\{closure}(\'\')\n#6 /storage/v11800/noha/public_html/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(NULL, Array)\n#7 /storage/v11800/noha/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array)\n#8 /storage/v11800/noha/public_html/wp-admin/admin-ajax.php(45): do_action(\'admin_init\')\n#9 {main}\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-06-20 19:16:39\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:1:{s:5:\"trace\";s:1391:\"#0 /storage/v11800/noha/public_html/wp-content/plugins/elementor/app/modules/import-export/processes/import.php(155): Elementor\\App\\Modules\\ImportExport\\Processes\\Import->extract_zip(\'/tmp/php2cQs4I\')\n#1 /storage/v11800/noha/public_html/wp-content/plugins/elementor/app/modules/import-export/module.php(306): Elementor\\App\\Modules\\ImportExport\\Processes\\Import->__construct(\'/tmp/php2cQs4I\', Array)\n#2 /storage/v11800/noha/public_html/wp-content/plugins/elementor/app/modules/import-export/module.php(601): Elementor\\App\\Modules\\ImportExport\\Module->upload_kit(\'/tmp/php2cQs4I\', \'local\')\n#3 /storage/v11800/noha/public_html/wp-content/plugins/elementor/app/modules/import-export/module.php(528): Elementor\\App\\Modules\\ImportExport\\Module->handle_upload_kit()\n#4 /storage/v11800/noha/public_html/wp-content/plugins/elementor/app/modules/import-export/module.php(434): Elementor\\App\\Modules\\ImportExport\\Module->maybe_handle_ajax()\n#5 /storage/v11800/noha/public_html/wp-includes/class-wp-hook.php(308): Elementor\\App\\Modules\\ImportExport\\Module->Elementor\\App\\Modules\\ImportExport\\{closure}(\'\')\n#6 /storage/v11800/noha/public_html/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(NULL, Array)\n#7 /storage/v11800/noha/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array)\n#8 /storage/v11800/noha/public_html/wp-admin/admin-ajax.php(45): do_action(\'admin_init\')\n#9 {main}\";}s:7:\"message\";s:16:\"invalid-zip-file\";s:4:\"type\";s:5:\"error\";}}s:32:\"7432b102125f799081973c61e053c7e7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-07-02 00:11:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.14.0\";s:2:\"to\";s:6:\"3.14.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-07-02 00:11:54\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.14.0\";s:2:\"to\";s:6:\"3.14.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"d35fb8c5ac5d341e77d881c569e587fe\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-09-09 01:11:52\";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:\"2023-09-09 01:11:52\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"a21da3414956685bd68f9c9d2f2a032c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-09-09 01:11:52\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-09-09 01:11:52\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"3401d406f4ffb8846a3b56cce624803d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-09-09 01:11:52\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-09-09 01:11:52\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"e72c43b77606632809eedfd0284cf3c8\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-09-09 01:11:52\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.14.0\";s:2:\"to\";s:6:\"3.15.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-09-09 01:11:52\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.14.0\";s:2:\"to\";s:6:\"3.15.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"432f2a87ef9687d83b9fea23df4b9c3f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-09-13 09:48:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.15.3\";s:2:\"to\";s:6:\"3.16.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-09-13 09:48:17\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.15.3\";s:2:\"to\";s:6:\"3.16.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}}','no'),(214,'elementskit-lite__stories_last_check','1694967036','yes'),(215,'elementskit-lite__stories_data','O:8:\"stdClass\":10:{s:8:\"10010681\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010681;s:5:\"title\";s:48:\"AI vs Manual Content Writing: Who Holds The Pen?\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:49:\"https://getgenie.ai/ai-vs-manual-content-writing/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010680\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010680;s:5:\"title\";s:73:\"How to Optimize for Google’s Featured Snippets: 13 Proven Steps to Rank\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:66:\"https://getgenie.ai/how-to-optimize-for-googles-featured-snippets/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010679\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010679;s:5:\"title\";s:47:\"How to Optimize Landing Page with Ai Assistance\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:42:\"https://getgenie.ai/optimize-landing-page/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010678\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010678;s:5:\"title\";s:64:\"How To Index A Page In WordPress Effectively: The Ultimate Guide\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:63:\"https://wpmet.com/how-to-index-a-page-in-wordpress-effectively/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010677\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010677;s:5:\"title\";s:49:\"How to Add Auto-Populate Fields in WordPress Form\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:67:\"https://wpmet.com/how-to-add-auto-populate-field-in-wordpress-form/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010676\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010676;s:5:\"title\";s:53:\"How to Show Testimonial in WordPress in 4 Quick Steps\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:48:\"https://wpmet.com/show-testimonial-in-wordpress/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010588\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010588;s:5:\"title\";s:48:\"WooCommerce Inventory Management: How to Nail it\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:51:\"https://wpmet.com/woocommerce-inventory-management/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010587\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010587;s:5:\"title\";s:69:\"How to Create Live Sales Notification for WooCommerce in Simple Steps\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:58:\"https://wpmet.com/live-sales-notification-for-woocommerce/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010586\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010586;s:5:\"title\";s:53:\"How to Limit Form Entries in WordPress (3 Easy Steps)\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:50:\"https://wpmet.com/limit-form-entries-in-wordpress/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010585\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010585;s:5:\"title\";s:67:\"How To Write Persuasive Product Descriptions With Ai (Step-by-Step)\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:60:\"https://getgenie.ai/persuasive-product-descriptions-with-ai/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}}','yes'),(233,'theme_is_activated_vamtam_pur','1','yes'),(234,'jetpack_active_modules','a:0:{}','yes'),(235,'pur_vamtam_theme_activated','1','yes'),(236,'vamtam_theme','a:106:{s:16:\"header-logo-type\";s:5:\"image\";s:30:\"custom-header-logo-transparent\";s:74:\"https://pur.vamtam.com/wp-content/uploads/2017/11/logo-spa-theme-white.svg\";s:18:\"show-splash-screen\";s:1:\"0\";s:18:\"splash-screen-logo\";s:0:\"\";s:12:\"sitemap-page\";s:5:\"11152\";s:16:\"maintenance-page\";s:1:\"0\";s:9:\"custom-js\";s:0:\"\";s:15:\"pagination-type\";s:9:\"load-more\";s:18:\"show-related-posts\";s:1:\"1\";s:19:\"related-posts-title\";s:15:\"RELATED STORIES\";s:9:\"post-meta\";a:4:{s:6:\"author\";s:0:\"\";s:3:\"tax\";s:1:\"1\";s:4:\"date\";s:1:\"1\";s:8:\"comments\";s:0:\"\";}s:22:\"show-single-post-image\";s:1:\"1\";s:14:\"archive-layout\";s:6:\"mosaic\";s:23:\"show-related-portfolios\";s:1:\"1\";s:24:\"related-portfolios-title\";s:10:\"More Cases\";s:16:\"site-layout-type\";s:4:\"full\";s:20:\"boxed-layout-padding\";s:1:\"0\";s:14:\"site-max-width\";s:4:\"1260\";s:15:\"body-background\";a:6:{s:16:\"background-image\";s:0:\"\";s:16:\"background-color\";s:7:\"#ffffff\";s:17:\"background-repeat\";s:9:\"no-repeat\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-size\";s:5:\"cover\";s:19:\"background-position\";s:13:\"center center\";}s:12:\"accent-color\";a:16:{i:1;s:7:\"#586bb4\";i:2;s:7:\"#e9ccbb\";i:3;s:7:\"#2c396b\";i:4;s:7:\"#ead9ce\";i:5;s:7:\"#ffffff\";i:6;s:7:\"#000000\";i:7;s:7:\"#e4e4e4\";i:8;s:7:\"#ffffff\";s:4:\"1-hc\";s:7:\"#ffffff\";s:4:\"2-hc\";s:7:\"#000000\";s:4:\"3-hc\";s:7:\"#ffffff\";s:4:\"4-hc\";s:7:\"#000000\";s:4:\"5-hc\";s:7:\"#000000\";s:4:\"6-hc\";s:7:\"#ffffff\";s:4:\"7-hc\";s:7:\"#000000\";s:4:\"8-hc\";s:7:\"#000000\";}s:2:\"h1\";a:10:{s:11:\"font-family\";s:11:\"EB Garamond\";s:9:\"font-size\";s:4:\"60px\";s:7:\"variant\";s:6:\"normal\";s:11:\"line-height\";s:4:\"1.03\";s:5:\"color\";s:7:\"#2c396b\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";}s:2:\"h2\";a:10:{s:11:\"font-family\";s:11:\"EB Garamond\";s:9:\"font-size\";s:4:\"46px\";s:7:\"variant\";s:6:\"normal\";s:11:\"line-height\";s:4:\"1.17\";s:5:\"color\";s:7:\"#2c396b\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";}s:2:\"h3\";a:10:{s:11:\"font-family\";s:11:\"EB Garamond\";s:9:\"font-size\";s:4:\"30px\";s:7:\"variant\";s:6:\"normal\";s:11:\"line-height\";s:3:\"1.2\";s:5:\"color\";s:7:\"#2c396b\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";}s:2:\"h4\";a:10:{s:11:\"font-family\";s:9:\"Work Sans\";s:9:\"font-size\";s:4:\"22px\";s:7:\"variant\";s:6:\"normal\";s:11:\"line-height\";s:4:\"1.18\";s:5:\"color\";s:7:\"#2c396b\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";}s:2:\"h5\";a:10:{s:11:\"font-family\";s:9:\"Work Sans\";s:9:\"font-size\";s:4:\"16px\";s:7:\"variant\";s:6:\"normal\";s:11:\"line-height\";s:3:\"1.5\";s:5:\"color\";s:7:\"#2c396b\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";}s:2:\"h6\";a:10:{s:11:\"font-family\";s:9:\"Work Sans\";s:9:\"font-size\";s:4:\"12px\";s:7:\"variant\";s:6:\"normal\";s:11:\"line-height\";s:4:\"1.17\";s:5:\"color\";s:7:\"#2c396b\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";}s:2:\"em\";a:10:{s:11:\"font-family\";s:9:\"Work Sans\";s:9:\"font-size\";s:4:\"14px\";s:7:\"variant\";s:10:\"300 italic\";s:11:\"line-height\";s:4:\"1.43\";s:5:\"color\";s:7:\"#2c396b\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:6:\"italic\";s:7:\"subsets\";s:0:\"\";}s:17:\"additional-font-1\";a:10:{s:11:\"font-family\";s:11:\"EB Garamond\";s:9:\"font-size\";s:4:\"60px\";s:7:\"variant\";s:6:\"normal\";s:11:\"line-height\";s:4:\"1.07\";s:5:\"color\";s:7:\"#2c396b\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:6:\"italic\";s:7:\"subsets\";s:0:\"\";}s:17:\"additional-font-2\";a:10:{s:11:\"font-family\";s:10:\"Alex Brush\";s:9:\"font-size\";s:4:\"50px\";s:7:\"variant\";s:6:\"normal\";s:11:\"line-height\";s:4:\"1.16\";s:5:\"color\";s:7:\"#e9ccbb\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";}s:13:\"gfont-subsets\";a:22:{s:6:\"arabic\";s:0:\"\";s:7:\"bengali\";s:0:\"\";s:8:\"cyrillic\";s:0:\"\";s:12:\"cyrillic-ext\";s:0:\"\";s:10:\"devanagari\";s:0:\"\";s:5:\"greek\";s:0:\"\";s:9:\"greek-ext\";s:0:\"\";s:8:\"gujarati\";s:0:\"\";s:8:\"gurmukhi\";s:0:\"\";s:6:\"hebrew\";s:0:\"\";s:7:\"kannada\";s:0:\"\";s:5:\"khmer\";s:0:\"\";s:5:\"latin\";s:1:\"1\";s:9:\"latin-ext\";s:0:\"\";s:9:\"malayalam\";s:0:\"\";s:7:\"myanmar\";s:0:\"\";s:5:\"oriya\";s:0:\"\";s:7:\"sinhala\";s:0:\"\";s:5:\"tamil\";s:0:\"\";s:6:\"telugu\";s:0:\"\";s:4:\"thai\";s:0:\"\";s:10:\"vietnamese\";s:0:\"\";}s:14:\"top-bar-layout\";s:14:\"beaver-top-bar\";s:13:\"header-layout\";s:9:\"logo-menu\";s:13:\"header-height\";s:2:\"90\";s:13:\"sticky-header\";s:1:\"1\";s:20:\"enable-header-search\";s:1:\"1\";s:22:\"show-empty-header-cart\";s:1:\"0\";s:17:\"full-width-header\";s:1:\"0\";s:16:\"header-text-main\";s:201:\"<a href=\"/janet-williams-appointments/\" target=\"_self\" class=\"vamtam-button accent1 hover-accent6 button-solid\" role=\"button\" style=\"font-size: 12px;\">\n<span class=\"vamtam-button-text\">Book</span>\n</a>\";s:17:\"header-background\";a:6:{s:16:\"background-image\";s:0:\"\";s:16:\"background-color\";s:7:\"#ffffff\";s:17:\"background-repeat\";s:9:\"no-repeat\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-size\";s:7:\"contain\";s:19:\"background-position\";s:8:\"left top\";}s:21:\"sub-header-background\";a:6:{s:16:\"background-image\";s:0:\"\";s:16:\"background-color\";s:7:\"#ffffff\";s:17:\"background-repeat\";s:9:\"no-repeat\";s:21:\"background-attachment\";s:5:\"fixed\";s:15:\"background-size\";s:4:\"auto\";s:19:\"background-position\";s:8:\"left top\";}s:17:\"page-title-layout\";s:8:\"centered\";s:21:\"page-title-background\";a:6:{s:16:\"background-image\";s:0:\"\";s:16:\"background-color\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:21:\"background-attachment\";s:5:\"fixed\";s:15:\"background-size\";s:4:\"auto\";s:19:\"background-position\";s:8:\"left top\";}s:33:\"page-title-background-hide-lowres\";s:1:\"0\";s:4:\"logo\";a:10:{s:11:\"font-family\";s:7:\"Poppins\";s:9:\"font-size\";s:4:\"36px\";s:7:\"variant\";s:3:\"600\";s:11:\"line-height\";s:4:\"0.83\";s:5:\"color\";s:7:\"#2c396b\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";}s:27:\"main-menu-text-sticky-color\";s:7:\"#ffffff\";s:18:\"left-sidebar-width\";s:2:\"25\";s:19:\"right-sidebar-width\";s:2:\"25\";s:15:\"main-background\";a:6:{s:16:\"background-image\";s:0:\"\";s:16:\"background-color\";s:7:\"#ffffff\";s:17:\"background-repeat\";s:6:\"repeat\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-size\";s:4:\"auto\";s:19:\"background-position\";s:8:\"left top\";}s:27:\"main-background-hide-lowres\";s:0:\"\";s:12:\"primary-font\";a:17:{i:0;s:1:\"#\";i:1;s:1:\"2\";i:2;s:1:\"e\";i:3;s:1:\"2\";i:4;s:1:\"e\";i:5;s:1:\"2\";i:6;s:1:\"e\";s:11:\"font-family\";s:9:\"Work Sans\";s:9:\"font-size\";s:4:\"14px\";s:7:\"variant\";s:3:\"300\";s:11:\"line-height\";s:4:\"1.43\";s:5:\"color\";s:7:\"#3d435c\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";}s:9:\"body-link\";a:4:{s:7:\"regular\";s:7:\"#2c396b\";s:5:\"hover\";s:7:\"#586bb4\";s:7:\"visited\";s:7:\"#2c396b\";s:6:\"active\";s:7:\"#586bb4\";}s:15:\"one-page-footer\";s:1:\"0\";s:22:\"footer-beaver-template\";s:18:\"landscaping-footer\";s:22:\"footer-sidebars-titles\";a:10:{s:11:\"font-family\";s:9:\"Work Sans\";s:9:\"font-size\";s:4:\"24px\";s:7:\"variant\";s:3:\"300\";s:11:\"line-height\";s:4:\"1.25\";s:5:\"color\";s:7:\"#2c396b\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";}s:18:\"show-scroll-to-top\";s:1:\"1\";s:13:\"sticky-footer\";s:1:\"1\";s:12:\"top-bar-text\";s:81:\"<div align=\"right\">\n<font size=\"15px\">\n<b>Call us: 800-454-9272</b></font>\n</div>\";s:19:\"top-bar-social-lead\";s:0:\"\";s:17:\"top-bar-social-fb\";s:0:\"\";s:22:\"top-bar-social-twitter\";s:1:\"#\";s:23:\"top-bar-social-linkedin\";s:1:\"#\";s:20:\"top-bar-social-gplus\";s:0:\"\";s:21:\"top-bar-social-flickr\";s:0:\"\";s:24:\"top-bar-social-pinterest\";s:0:\"\";s:23:\"top-bar-social-dribbble\";s:0:\"\";s:24:\"top-bar-social-instagram\";s:0:\"\";s:22:\"top-bar-social-youtube\";s:0:\"\";s:20:\"top-bar-social-vimeo\";s:0:\"\";s:18:\"top-nav-background\";a:6:{s:16:\"background-image\";s:0:\"\";s:16:\"background-color\";s:7:\"#ffffff\";s:17:\"background-repeat\";s:6:\"repeat\";s:21:\"background-attachment\";s:5:\"fixed\";s:15:\"background-size\";s:4:\"auto\";s:19:\"background-position\";s:8:\"left top\";}s:11:\"css-tophead\";a:3:{s:10:\"text-color\";s:7:\"#2a7d2e\";s:10:\"link-color\";s:7:\"#2a7d2e\";s:16:\"link-hover-color\";s:7:\"#ffffff\";}s:7:\"submenu\";a:3:{s:10:\"background\";s:7:\"#ffffff\";s:5:\"color\";s:7:\"#000000\";s:11:\"hover-color\";s:7:\"#2a7d2e\";}s:20:\"footer-sidebars-font\";a:10:{s:11:\"font-family\";s:10:\"Montserrat\";s:9:\"font-size\";s:4:\"14px\";s:7:\"variant\";s:3:\"300\";s:11:\"line-height\";s:3:\"5px\";s:5:\"color\";s:7:\"#000000\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";}s:11:\"footer-link\";a:4:{s:7:\"regular\";s:7:\"#45545e\";s:5:\"hover\";s:7:\"#000000\";s:7:\"visited\";s:7:\"#54687e\";s:6:\"active\";s:7:\"#000000\";}s:17:\"full-width-footer\";s:1:\"1\";s:17:\"footer-background\";a:6:{s:16:\"background-image\";s:0:\"\";s:16:\"background-color\";s:7:\"#ffffff\";s:17:\"background-repeat\";s:9:\"no-repeat\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-size\";s:4:\"auto\";s:19:\"background-position\";s:8:\"left top\";}s:29:\"footer-background-hide-lowres\";s:1:\"1\";s:20:\"full-width-subfooter\";s:1:\"0\";s:14:\"subfooter-left\";s:0:\"\";s:16:\"subfooter-center\";s:0:\"\";s:15:\"subfooter-right\";s:0:\"\";s:20:\"subfooter-background\";a:6:{s:16:\"background-image\";s:0:\"\";s:16:\"background-color\";s:7:\"#ff4c4c\";s:17:\"background-repeat\";s:6:\"repeat\";s:21:\"background-attachment\";s:5:\"fixed\";s:15:\"background-size\";s:4:\"auto\";s:19:\"background-position\";s:8:\"left top\";}s:10:\"sub-footer\";a:10:{s:11:\"font-family\";s:27:\"Verdana, Geneva, sans-serif\";s:9:\"font-size\";s:5:\"120px\";s:7:\"variant\";s:3:\"300\";s:11:\"line-height\";s:5:\"240px\";s:5:\"color\";s:7:\"#45545e\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";}s:23:\"header-sidebars-1-width\";s:8:\"cell-1-3\";s:23:\"header-sidebars-2-width\";s:8:\"cell-1-3\";s:23:\"header-sidebars-3-width\";s:8:\"cell-1-3\";s:23:\"header-sidebars-4-width\";s:0:\"\";s:23:\"header-sidebars-5-width\";s:0:\"\";s:23:\"header-sidebars-6-width\";s:0:\"\";s:23:\"header-sidebars-7-width\";s:0:\"\";s:23:\"header-sidebars-8-width\";s:0:\"\";s:23:\"footer-sidebars-1-width\";s:8:\"cell-1-1\";s:23:\"footer-sidebars-2-width\";s:8:\"cell-2-3\";s:23:\"footer-sidebars-3-width\";s:8:\"cell-2-3\";s:23:\"footer-sidebars-4-width\";s:8:\"cell-1-2\";s:23:\"footer-sidebars-5-width\";s:8:\"cell-1-2\";s:23:\"footer-sidebars-6-width\";s:8:\"cell-1-2\";s:23:\"footer-sidebars-7-width\";s:8:\"cell-1-2\";s:23:\"footer-sidebars-8-width\";s:8:\"cell-1-2\";s:8:\"last_tab\";s:0:\"\";s:18:\"show_scroll_to_top\";s:1:\"1\";s:21:\"theme-loop-images-wth\";s:3:\"1.3\";s:23:\"theme-single-images-wth\";s:3:\"1.3\";s:22:\"hide-single-post-image\";s:1:\"1\";s:18:\"envato-license-key\";s:0:\"\";s:21:\"system-status-opt-out\";s:5:\"false\";s:12:\"google_fonts\";s:157:\"https://fonts.googleapis.com/css?family=EB+Garamond:normal,bold|Work+Sans:normal,300italic,300,bold,700i|Alex+Brush:normal,bold|Poppins:600,bold&subset=latin\";}','yes'),(237,'elementor_container_width','1260','yes'),(238,'vamtam-css-cache-timestamp','1687336873','yes'),(239,'pur-vamtam-last-theme-version','13.6','yes'),(245,'theme_mods_pur','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1687337045;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:9:\"page-left\";a:0:{}s:10:\"page-right\";a:0:{}s:20:\"overlay-menu-sidebar\";a:0:{}}}}','yes'),(250,'_elementor_settings_update_time','1687337231','yes'),(251,'elementor_cpt_support','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(252,'elementor_disable_color_schemes','yes','yes'),(253,'elementor_disable_typography_schemes','yes','yes'),(254,'elementor_allow_tracking','no','yes'),(255,'elementor_google_maps_api_key','','yes'),(256,'elementor_css_print_method','external','yes'),(257,'elementor_editor_break_lines','','yes'),(258,'elementor_unfiltered_files_upload','','yes'),(259,'elementor_google_font','1','yes'),(260,'elementor_load_fa4_shim','','yes'),(261,'elementor_meta_generator_tag','','yes'),(262,'elementor_experiment-e_font_icon_svg','default','yes'),(263,'elementor_experiment-container','default','yes'),(264,'elementor_experiment-container_grid','default','yes'),(265,'elementor_experiment-editor_v2','default','yes'),(266,'elementor_experiment-nested-elements','default','yes'),(267,'elementor_experiment-e_lazyload','default','yes'),(268,'elementor_experiment-e_global_styleguide','default','yes'),(269,'elementor_experiment-e_dom_optimization','default','yes'),(270,'elementor_experiment-e_optimized_assets_loading','default','yes'),(271,'elementor_experiment-e_optimized_css_loading','default','yes'),(272,'elementor_experiment-a11y_improvements','default','yes'),(273,'elementor_experiment-additional_custom_breakpoints','default','yes'),(274,'elementor_experiment-e_swiper_latest','default','yes'),(275,'elementor_experiment-hello-theme-header-footer','default','yes'),(276,'elementor_experiment-landing-pages','default','yes'),(283,'eael_setup_wizard','complete','yes'),(284,'eael_save_settings','a:57:{s:9:\"post-grid\";s:0:\"\";s:13:\"post-timeline\";s:0:\"\";s:10:\"fancy-text\";i:1;s:12:\"creative-btn\";i:1;s:10:\"count-down\";i:1;s:12:\"team-members\";i:1;s:12:\"testimonials\";i:1;s:8:\"info-box\";i:1;s:8:\"flip-box\";i:1;s:14:\"call-to-action\";i:1;s:11:\"dual-header\";i:1;s:11:\"price-table\";i:1;s:12:\"twitter-feed\";s:0:\"\";s:13:\"facebook-feed\";s:0:\"\";s:19:\"advanced-data-table\";s:0:\"\";s:10:\"data-table\";i:1;s:14:\"filter-gallery\";i:1;s:15:\"image-accordion\";i:1;s:14:\"content-ticker\";i:1;s:7:\"tooltip\";i:1;s:13:\"adv-accordion\";i:1;s:8:\"adv-tabs\";i:1;s:12:\"progress-bar\";i:1;s:12:\"feature-list\";i:1;s:12:\"product-grid\";s:0:\"\";s:14:\"contact-form-7\";s:0:\"\";s:7:\"weforms\";s:0:\"\";s:10:\"ninja-form\";s:0:\"\";s:9:\"formstack\";s:0:\"\";s:12:\"gravity-form\";s:0:\"\";s:12:\"caldera-form\";s:0:\"\";s:7:\"wpforms\";s:0:\"\";s:10:\"fluentform\";s:0:\"\";s:8:\"typeform\";s:0:\"\";s:24:\"betterdocs-category-grid\";s:0:\"\";s:23:\"betterdocs-category-box\";s:0:\"\";s:22:\"betterdocs-search-form\";s:0:\"\";s:12:\"sticky-video\";i:1;s:14:\"event-calendar\";s:0:\"\";s:10:\"embedpress\";i:1;s:24:\"crowdfundly-organization\";i:1;s:24:\"crowdfundly-all-campaign\";i:1;s:27:\"crowdfundly-single-campaign\";i:1;s:12:\"woo-checkout\";s:0:\"\";s:8:\"woo-cart\";s:0:\"\";s:14:\"login-register\";s:0:\"\";s:18:\"woocommerce-review\";i:1;s:11:\"career-page\";i:1;s:19:\"woo-product-compare\";s:0:\"\";s:20:\"woo-product-carousel\";s:0:\"\";s:11:\"simple-menu\";i:1;s:19:\"woo-product-gallery\";s:0:\"\";s:18:\"interactive-circle\";s:0:\"\";s:14:\"better-payment\";i:1;s:11:\"nft-gallery\";i:1;s:16:\"business-reviews\";s:0:\"\";s:8:\"svg-draw\";s:0:\"\";}','yes'),(285,'wpdeveloper_plugins_data','a:1:{s:25:\"essential_adons_elementor\";a:3:{s:16:\"notice_will_show\";a:2:{s:6:\"opt_in\";i:1695036283;s:6:\"review\";i:1695381883;}s:4:\"time\";i:1694777083;s:7:\"version\";s:5:\"5.8.9\";}}','yes'),(286,'eael_version','5.9.22','yes'),(287,'eael_admin_menu_notice','6','no'),(290,'metform__banner_last_check','1694967037','yes'),(291,'metform__banner_data','O:8:\"stdClass\":10:{s:8:\"10010506\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010506;s:5:\"title\";s:32:\"Wpmet Summer sale 2023 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010508\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010508;s:5:\"title\";s:31:\"Wpmet Summer sale 2023 own page\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010418\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010418;s:5:\"title\";s:32:\"Wpmet Summer Ownpage Notice 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1685577600;s:3:\"end\";i:1686787200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:26:\"https://wpmet.com/birthday\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:539:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Birthday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $221 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 45% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2023/06/notice.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10008094\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008094;s:5:\"title\";s:24:\"GetGenie Cross Promotion\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1678492800;s:3:\"end\";i:1688083200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:35:\"https://wpmet.com/getgenie-org-page\";s:11:\"button_text\";s:14:\"Get Yours Now!\";s:11:\"notice_body\";s:766:\"<h2>We are delighted to announce that <span style=\"color: #2471b1;\"><strong style=\"color: #2471b1; text-transform: uppercase; font-size: 14px;\">GetGenie AI is now available</strong></span>!</h2>\r\n<h4 style=\"font-size: 16px; margin-left: -2px;\"><b>Let&#039;s write your content 20x faster with AI. Also, Research </b><b>keywords</b><b>, A</b><b>nalyse your </b><b>competitors, head 2 Head analysis,  content writing with ai, and search engine ranking with NLP Keywords optimization—all within WordPress.</b> Additionally, <b>you can chat</b> with the GENIE AI about your needs.</h4>\r\n<span style=\"color: #dd0cd9;\">Join now and get <span style=\"font-weight: 400;\"><strong>1500 words for free every month</strong></span></span><span style=\"color: #dd0cd9;\">. </span>\";s:12:\"notice_image\";s:79:\"https://api.wpmet.com/auth/wp-content/uploads/2023/03/genie_compare_image_4.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:20:\"background: #e9fce5;\";s:10:\"unique_key\";s:20:\"getgenie-cross-promo\";}}s:8:\"10008085\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008085;s:5:\"title\";s:27:\"Wpmet Notice Dashboard 2022\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1671580800;s:3:\"end\";i:1673740800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/holiday22/notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:517:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Holiday Deals from Wpmet</span></strong> <br>\r\n<strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $1670 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social — or get them <b>all in super-saver bundles to save 70% instantly!\r\n</b></p>\";s:12:\"notice_image\";s:70:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/70-OFF-wpmet.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:7:\"bfc2022\";}}s:8:\"10008083\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008083;s:5:\"title\";s:25:\"Wpmet Notice Ownpage 2022\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1671580800;s:3:\"end\";i:1673740800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/holiday22/notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:519:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Holiday Deals from Wpmet. </span></strong> <br>\r\n<strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $1670 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social — or get them <b>all in super-saver bundles to save 70% instantly!\r\n</b></p>\";s:12:\"notice_image\";s:70:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/70-OFF-wpmet.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:7:\"bfc2022\";}}s:8:\"10007775\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007775;s:5:\"title\";s:17:\"August Flash Sale\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:7:\"plugins\";s:5:\"start\";i:1661385600;s:3:\"end\";i:1661904000;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:30:\"https://wpmet.com/flash/banner\";s:12:\"banner_image\";s:75:\"https://api.wpmet.com/auth/wp-content/uploads/2022/08/InPlugin-Banner-4.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:76:\"background-color: #00003E; display: block; height: 60px; text-align: center;\";s:10:\"unique_key\";s:15:\"AugustFlashSale\";}}s:8:\"10007665\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007665;s:5:\"title\";s:18:\"Metform x Hubspot!\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1660003200;s:3:\"end\";i:1661299200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:232:\"<span style=\"color: #000000;\"><strong>MetForm\'s HubSpot FREE integration</strong> is now complete for your convenience. Just go to MetForm → Settings → CRM &amp; Marketing Integrations to connect HubSpot with MetForm now!</span>\";s:12:\"notice_image\";s:84:\"https://api.wpmet.com/auth/wp-content/uploads/2022/08/Metform-Integration-notice.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10007416\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007416;s:5:\"title\";s:28:\"Wpmet 4th of July Flash Sale\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:8:\"all_page\";s:5:\"start\";i:1656806400;s:3:\"end\";i:1657065600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:603:\"ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins altogether and save 70% instantly! Happy 4th of July Flash Sale!!\r\n\r\n<a href=\"https://wpmet.com/4-july/notice\"><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Claim Your Discount →&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:1337857,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0,&quot;14&quot;:{&quot;1&quot;:2,&quot;2&quot;:1136076},&quot;16&quot;:10,&quot;17&quot;:1,&quot;21&quot;:1,&quot;23&quot;:1}\" data-sheets-hyperlink=\"https://wpmet.com/deals\">Claim Your Discount →</span></a>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2022/07/Notice.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:13:\"4thJulybanner\";}}s:8:\"10007174\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007174;s:5:\"title\";s:31:\"Wpmet Birthday Campaign Ownpage\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:8:\"all_page\";s:5:\"start\";i:1653868800;s:3:\"end\";i:1655942400;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:261:\"Wpmet\'s Birthday Sale is going on! Enjoy limited-time discounts of up to 50% on each of our PRO plugins — ElementsKit , ShopEngine, MetForm, WP Social, WP Ultimate Review. Hurry up!\r\n\r\n<a href=\"https://wpmet.com/notice/birthday-deal\">Get Your Discount →</a>\";s:12:\"notice_image\";s:76:\"https://api.wpmet.com/auth/wp-content/uploads/2022/05/InPlugin-Notice-50.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:14:\"birthdaybanner\";}}}','yes'),(292,'metform_install_date','2023-06-21 08:54:00','yes'),(293,'eael_editor_updated_at','1695019548','yes'),(294,'eael_global_settings','a:1:{s:22:\"eael_ext_scroll_to_top\";a:0:{}}','yes'),(300,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(301,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(302,'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'),(312,'bsf_analytics_optin','no','yes'),(319,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(320,'elementskit_options','a:1:{s:17:\"megamenu_settings\";a:1:{s:15:\"menu_location_4\";a:1:{s:10:\"is_enabled\";i:0;}}}','yes'),(332,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:29:\"salon-booking-system/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:6:\"2.5.10\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1694436657;s:11:\"plugin_path\";s:30:\"salon-booking-system/salon.php\";}}s:7:\"abspath\";s:39:\"/storage/v11800/athomenoha/public_html/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:30:\"salon-booking-system/salon.php\";s:8:\"sdk_path\";s:29:\"salon-booking-system/freemius\";s:7:\"version\";s:6:\"2.5.10\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1694436657;}}','yes'),(333,'fs_debug_mode','','yes'),(334,'fs_accounts','a:5:{s:21:\"id_slug_type_path_map\";a:1:{i:3257;a:3:{s:4:\"slug\";s:20:\"salon-booking-system\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:30:\"salon-booking-system/salon.php\";}}s:11:\"plugin_data\";a:1:{s:20:\"salon-booking-system\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:30:\"salon-booking-system/salon.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1687350490;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";s:5:\"2.4.3\";s:11:\"sdk_version\";s:6:\"2.5.10\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"8.7.1\";s:14:\"plugin_version\";s:5:\"8.8.1\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:22:\"noha.in8.cdn-alpha.com\";s:9:\"server_ip\";s:15:\"103.226.224.116\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1687350490;s:7:\"version\";s:5:\"8.4.6\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1687350516;s:7:\"version\";s:5:\"8.4.6\";}}}s:13:\"file_slug_map\";a:1:{s:30:\"salon-booking-system/salon.php\";s:20:\"salon-booking-system\";}s:7:\"plugins\";a:1:{s:20:\"salon-booking-system\";O:9:\"FS_Plugin\":24:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:45:\"Salon Booking Wordpress Plugin - Free Version\";s:4:\"slug\";s:20:\"salon-booking-system\";s:12:\"premium_slug\";s:28:\"salon-booking-system-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:30:\"salon-booking-system/salon.php\";s:7:\"version\";s:5:\"8.8.1\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:17:\"opt_in_moderation\";N;s:10:\"public_key\";s:32:\"pk_e750486b23f30cab3c1e3005a4dd7\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3257\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"3e30642ea3f862c3d136a535c523df9d\";}','yes'),(335,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(336,'fs_api_cache','a:0:{}','no'),(339,'_transient__sln_welcome_show_page','0','yes'),(340,'salon_settings','a:87:{s:11:\"date_format\";s:7:\"default\";s:11:\"time_format\";s:7:\"default\";s:17:\"hours_before_from\";s:6:\"+1 day\";s:15:\"hours_before_to\";s:8:\"+1 month\";s:8:\"interval\";i:30;s:17:\"availability_mode\";s:8:\"advanced\";s:17:\"attendant_enabled\";s:1:\"1\";s:20:\"form_steps_alt_order\";s:1:\"1\";s:16:\"disabled_message\";s:76:\"Booking is not available at the moment, please contact us at wp@dxpsites.com\";s:8:\"gen_name\";s:0:\"\";s:9:\"gen_email\";s:0:\"\";s:9:\"gen_phone\";s:0:\"\";s:11:\"gen_address\";s:0:\"\";s:13:\"gen_timetable\";s:94:\"In case of delay we\'ll keep your \"seat\" for 15 minutes, after that you\'ll loose your priority.\";s:14:\"last_step_note\";s:266:\"You will receive a booking confirmation by email.If you do not receive an email in 5 minutes, check your Junk Mail or Spam Folder. If you need to change your reservation, please call <strong>[SALON PHONE]</strong> or send an e-mail to <strong>[SALON EMAIL]</strong>.\";s:12:\"soc_facebook\";N;s:11:\"soc_twitter\";N;s:10:\"soc_google\";N;s:12:\"ajax_enabled\";b:1;s:7:\"booking\";b:1;s:8:\"thankyou\";s:3:\"251\";s:14:\"availabilities\";a:1:{i:0;a:3:{s:4:\"days\";a:5:{i:2;i:1;i:3;i:1;i:4;i:1;i:5;i:1;i:6;i:1;}s:4:\"from\";a:2:{i:0;s:5:\"08:00\";i:1;s:5:\"13:00\";}s:2:\"to\";a:2:{i:0;s:5:\"13:00\";i:1;s:5:\"20:00\";}}}s:24:\"sms_notification_message\";s:93:\"Hi [NAME],\r\ntake note of your reservation at [SALON NAME] on [DATE] at [TIME].\r\nSee you soon.\";s:33:\"sms_notification_message_modified\";s:106:\"Hi [NAME],\r\nyour reservation at [SALON NAME], has been updated.\r\nWe\'ve sent you an email with the details.\";s:13:\"email_subject\";s:58:\"Your booking reminder for [DATE] at [TIME] at [SALON NAME]\";s:22:\"booking_update_message\";s:72:\"Hi [NAME],\r\ntake note of the details of your reservation at [SALON NAME]\";s:16:\"email_nb_subject\";s:49:\"Your booking for [DATE] at [TIME] at [SALON NAME]\";s:19:\"new_booking_message\";s:72:\"Hi [NAME],\r\ntake note of the details of your reservation at [SALON NAME]\";s:17:\"follow_up_message\";s:142:\"Hi [NAME],\r\nIt\'s been a while since your last visit, would you like to book a new appointment with us?\r\n\r\nWe look forward to seeing you again.\";s:12:\"pay_currency\";s:3:\"USD\";s:16:\"pay_currency_pos\";s:5:\"right\";s:21:\"pay_decimal_separator\";s:1:\".\";s:22:\"pay_thousand_separator\";s:1:\",\";s:16:\"pay_paypal_email\";s:13:\"test@test.com\";s:15:\"pay_paypal_test\";b:1;s:17:\"pay_stripe_method\";s:4:\"card\";s:14:\"parallels_hour\";i:1;s:14:\"sln_db_version\";s:3:\"8.6\";s:30:\"onesignal_notification_message\";s:60:\"Hi, the new reservation at [SALON NAME] on [DATE] at [TIME].\";s:22:\"enable_discount_system\";b:1;s:5:\"debug\";b:0;s:16:\"bookingmyaccount\";s:3:\"252\";s:3:\"pay\";s:3:\"250\";s:14:\"zapier_api_key\";s:20:\"6d30362932970cfb9aed\";s:8:\"gen_logo\";s:3:\"257\";s:18:\"editors_manage_cap\";s:1:\"0\";s:35:\"only_from_backend_attendant_enabled\";s:1:\"0\";s:19:\"m_attendant_enabled\";s:1:\"0\";s:31:\"hide_invalid_attendants_enabled\";s:1:\"0\";s:23:\"skip_attendants_enabled\";s:1:\"0\";s:15:\"attendant_email\";s:1:\"0\";s:32:\"choose_attendant_for_me_disabled\";s:1:\"0\";s:11:\"sms_enabled\";s:1:\"0\";s:11:\"sms_account\";s:0:\"\";s:12:\"sms_password\";s:0:\"\";s:10:\"sms_prefix\";s:0:\"\";s:12:\"sms_provider\";s:4:\"fake\";s:8:\"sms_from\";s:0:\"\";s:7:\"sms_new\";s:1:\"0\";s:14:\"sms_new_number\";s:0:\"\";s:12:\"sms_modified\";s:1:\"0\";s:17:\"sms_new_attendant\";s:1:\"0\";s:22:\"sms_modified_attendant\";s:1:\"0\";s:16:\"whatsapp_enabled\";s:1:\"0\";s:10:\"sms_remind\";s:1:\"0\";s:19:\"sms_remind_interval\";s:7:\"+1 hour\";s:16:\"sms_trunk_prefix\";s:1:\"0\";s:12:\"email_remind\";s:1:\"0\";s:21:\"email_remind_interval\";s:7:\"+1 hour\";s:30:\"disable_new_user_welcome_email\";s:1:\"0\";s:15:\"follow_up_email\";s:1:\"0\";s:13:\"follow_up_sms\";s:1:\"0\";s:18:\"follow_up_interval\";s:7:\"+1 days\";s:14:\"feedback_email\";s:1:\"0\";s:12:\"feedback_sms\";s:1:\"0\";s:19:\"custom_feedback_url\";s:0:\"\";s:22:\"feedback_email_subject\";s:18:\"Noha International\";s:16:\"feedback_message\";s:191:\"Hi [NAME],\r\nwould you like to leave a review on your last appointment at [SALON NAME]?\r\nYour feedback we\'ll help us improving our services and providing you a better experience in the future.\";s:16:\"onesignal_app_id\";s:0:\"\";s:13:\"onesignal_new\";s:1:\"0\";s:19:\"google_maps_api_key\";s:0:\"\";s:25:\"google_maps_api_key_valid\";s:0:\"\";s:10:\"week_start\";s:1:\"0\";s:13:\"calendar_view\";s:5:\"month\";s:15:\"sms_test_number\";s:0:\"\";s:16:\"sms_test_message\";s:0:\"\";s:33:\"salon_staff_manage_cap_export_csv\";s:1:\"0\";}','yes'),(341,'_transient_sln_phone_country_dial_code_updated','1','yes'),(342,'sln_calendar_page_show','1','yes'),(343,'sln_zapier_new_bookings_ids','a:1:{i:0;i:253;}','yes'),(344,'salon_cache','a:29:{s:10:\"2023-06-22\";a:2:{s:10:\"free_slots\";a:4:{i:0;s:5:\"18:00\";i:1;s:5:\"18:30\";i:2;s:5:\"19:00\";i:3;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-06-23\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-06-24\";a:2:{s:10:\"free_slots\";a:0:{}s:6:\"status\";s:13:\"booking_rules\";}s:10:\"2023-06-25\";a:2:{s:10:\"free_slots\";a:0:{}s:6:\"status\";s:13:\"booking_rules\";}s:10:\"2023-06-26\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-06-27\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-06-28\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-06-29\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-06-30\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-07-01\";a:2:{s:10:\"free_slots\";a:0:{}s:6:\"status\";s:13:\"booking_rules\";}s:10:\"2023-07-02\";a:2:{s:10:\"free_slots\";a:0:{}s:6:\"status\";s:13:\"booking_rules\";}s:10:\"2023-07-03\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-07-04\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-07-05\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-07-06\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-07-07\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-07-08\";a:2:{s:10:\"free_slots\";a:0:{}s:6:\"status\";s:13:\"booking_rules\";}s:10:\"2023-07-09\";a:2:{s:10:\"free_slots\";a:0:{}s:6:\"status\";s:13:\"booking_rules\";}s:10:\"2023-07-10\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-07-11\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-07-12\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-07-13\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-07-14\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-07-15\";a:2:{s:10:\"free_slots\";a:0:{}s:6:\"status\";s:13:\"booking_rules\";}s:10:\"2023-07-16\";a:2:{s:10:\"free_slots\";a:0:{}s:6:\"status\";s:13:\"booking_rules\";}s:10:\"2023-07-17\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-07-18\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-07-19\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}s:10:\"2023-07-20\";a:2:{s:10:\"free_slots\";a:24:{i:0;s:5:\"08:00\";i:1;s:5:\"08:30\";i:2;s:5:\"09:00\";i:3;s:5:\"09:30\";i:4;s:5:\"10:00\";i:5;s:5:\"10:30\";i:6;s:5:\"11:00\";i:7;s:5:\"11:30\";i:8;s:5:\"12:00\";i:9;s:5:\"12:30\";i:10;s:5:\"13:00\";i:11;s:5:\"13:30\";i:12;s:5:\"14:00\";i:13;s:5:\"14:30\";i:14;s:5:\"15:00\";i:15;s:5:\"15:30\";i:16;s:5:\"16:00\";i:17;s:5:\"16:30\";i:18;s:5:\"17:00\";i:19;s:5:\"17:30\";i:20;s:5:\"18:00\";i:21;s:5:\"18:30\";i:22;s:5:\"19:00\";i:23;s:5:\"19:30\";}s:6:\"status\";s:4:\"free\";}}','no'),(363,'eael_templately_promo_hide','1','yes'),(443,'_transient_timeout_wp_cli_login/1f07b4-2502de40-741d5e56ba','1694202854','no'),(444,'_transient_wp_cli_login/1f07b4-2502de40-741d5e56ba','{\"user\":1,\"private\":\"$P$B3cwyTAw96mxcS0v8fElaSmMl\\/7qNJ\\/\",\"time\":1694201954}','no'),(447,'default_comment_status','open','yes'),(448,'db_upgraded','','yes'),(457,'can_compress_scripts','0','yes'),(474,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1717103197;s:7:\"checked\";a:4:{s:15:\"hello-elementor\";s:5:\"2.8.1\";s:16:\"twentytwentyfour\";s:3:\"1.1\";s:17:\"twentytwentythree\";s:3:\"1.4\";s:15:\"twentytwentytwo\";s:3:\"1.7\";}s:8:\"response\";a:1:{s:15:\"hello-elementor\";a:6:{s:5:\"theme\";s:15:\"hello-elementor\";s:11:\"new_version\";s:5:\"3.0.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.3.0.2.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.3\";}}s:9:\"no_update\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.1.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.4.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.7.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(482,'_site_transient_timeout_community-events-555f9b54b3dd11abb83193b6fc02069c','1694479873','no'),(483,'_site_transient_community-events-555f9b54b3dd11abb83193b6fc02069c','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"172.70.218.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Mumbai 2023\";s:3:\"url\";s:33:\"https://mumbai.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-10-28 00:00:00\";s:8:\"end_date\";s:19:\"2023-10-29 00:00:00\";s:20:\"start_unix_timestamp\";i:1698431400;s:18:\"end_unix_timestamp\";i:1698517800;s:8:\"location\";a:4:{s:8:\"location\";s:26:\"Mumbai, Maharashtra, India\";s:7:\"country\";s:2:\"IN\";s:8:\"latitude\";d:19.0507572;s:9:\"longitude\";d:72.829808700000001;}}}}','no'),(499,'_transient_timeout_elementor_remote_info_api_data_3.15.3','1694536670','no'),(500,'_transient_elementor_remote_info_api_data_3.15.3','a:4:{s:9:\"timestamp\";s:10:\"1694490207\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{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:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";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:5:\"6.3.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(504,'_site_transient_timeout_browser_12cff7c401b241581c1f347ece73543d','1695107293','no'),(505,'_site_transient_browser_12cff7c401b241581c1f347ece73543d','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"116.0.0.0\";s:8:\"platform\";s:9:\"Macintosh\";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'),(506,'_site_transient_timeout_community-events-c8e9e42e62e305d9a1f92094141e0761','1694545702','no'),(507,'_site_transient_community-events-c8e9e42e62e305d9a1f92094141e0761','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"172.71.202.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Mumbai 2023\";s:3:\"url\";s:33:\"https://mumbai.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-10-28 00:00:00\";s:8:\"end_date\";s:19:\"2023-10-29 00:00:00\";s:20:\"start_unix_timestamp\";i:1698431400;s:18:\"end_unix_timestamp\";i:1698517800;s:8:\"location\";a:4:{s:8:\"location\";s:26:\"Mumbai, Maharashtra, India\";s:7:\"country\";s:2:\"IN\";s:8:\"latitude\";d:19.0507572;s:9:\"longitude\";d:72.829808700000001;}}}}','no'),(522,'_transient_timeout_elementor_remote_templates_data_3.15.3','1694550586','no');
INSERT INTO `wp_options` VALUES (523,'_transient_elementor_remote_templates_data_3.15.3','a:823:{i:0;a:18:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:18:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:18:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:18:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:18:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:18:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:18:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:18:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:18:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:18:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:18:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:18:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:18:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:18:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:18:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:18:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:18:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:18:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:18:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:18:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:18:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:18:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:18:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:18:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:18:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:18:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:18:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:18:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:18:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:18:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:18:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:18:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:18:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:18:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:18:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:18:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:18:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:18:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:18:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:18:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:18:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:18:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:18:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:18:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:18:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:18:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:18:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:18:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:18:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:18:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:18:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:18:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:18:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:18:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:18:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:18:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:18:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:18:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:18:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:18:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:18:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:18:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:18:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:18:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:18:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:18:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:18:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:18:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:18:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:18:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:18:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:18:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:18:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:18:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:18:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:18:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:18:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:18:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:18:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:18:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:18:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:18:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:18:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:18:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:18:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:18:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:18:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:18:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:18:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:18:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:18:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:18:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:18:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:18:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:18:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:18:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:18:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:18:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:18:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:18:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:18:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:18:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:18:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:18:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:18:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:18:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:18:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:18:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:18:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:18:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:18:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:18:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:18:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:18:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:18:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:18:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:18:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:18:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:18:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:18:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:18:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:18:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:18:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:18:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:18:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:18:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:18:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:18:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:18:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:18:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:18:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:18:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:18:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:18:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:18:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:18:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:18:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:18:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:18:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:18:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:18:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:18:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:18:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:18:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:18:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:18:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:18:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:18:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:18:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:18:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:18:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:18:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:18:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:18:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:18:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:18:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:18:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:18:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:18:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:18:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:18:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:18:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:18:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:18:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:18:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:18:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:18:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:18:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:18:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:18:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:18:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:18:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:18:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:18:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:18:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:18:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:18:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:18:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:18:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:18:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:18:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:18:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:18:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:18:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:18:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:18:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:18:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:18:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:18:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:18:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:18:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:18:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:18:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:18:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:18:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:18:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:18:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:18:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:18:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:18:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:18:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:18:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:18:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:18:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:18:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:18:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:18:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:18:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:18:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:18:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:18:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:18:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:18:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:18:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:18:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:18:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:18:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:18:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:18:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:18:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:18:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:18:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:18:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:18:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:18:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:18:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:18:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:18:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:18:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:18:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:18:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:18:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:18:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:18:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:18:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:18:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:18:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:18:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:18:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:18:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:18:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:18:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:18:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:18:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:18:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:18:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:18:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:18:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:18:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:18:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:18:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:18:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:18:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:18:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:18:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:18:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:18:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:18:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:18:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:18:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:18:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:18:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:18:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:18:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:18:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:18:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:18:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:18:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:18:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:18:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:18:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:18:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:18:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:18:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:18:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:18:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:18:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:18:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:18:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:18:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:18:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:18:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:18:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:18:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:18:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:18:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:18:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:18:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:18:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:18:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:18:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:18:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:18:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:18:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:18:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:18:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:18:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:18:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:18:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:18:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:18:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:18:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:18:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:18:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:18:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:18:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:18:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:18:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:18:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:18:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:18:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:18:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:18:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:18:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:18:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:18:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:18:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:18:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:18:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:18:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:18:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:18:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:18:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:18:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:18:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:18:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:18:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:18:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:18:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:18:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:18:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:18:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:18:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:18:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:18:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:18:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:18:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:18:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:18:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:18:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:18:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:18:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:18:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:18:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:18:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:18:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:18:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:18:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:18:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:18:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:18:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:18:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:18:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:18:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:18:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:18:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:18:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:18:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:18:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:18:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:18:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:18:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:18:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:18:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:18:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:18:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:18:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:18:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:18:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:18:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:18:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:18:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:18:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:18:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:18:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:18:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:18:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:18:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:18:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:18:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:18:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:18:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:18:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:18:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:18:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:18:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:18:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:18:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:18:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:18:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:18:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:18:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:18:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:18:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:18:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:18:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:18:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:18:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:18:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:18:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:18:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:18:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:18:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:18:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:18:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:18:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:18:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:18:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:18:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:18:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:18:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:18:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:18:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:18:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:18:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:18:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:18:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:18:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:18:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:18:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:18:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:18:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:18:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:18:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:18:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:18:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:18:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:18:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:18:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:18:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:18:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:18:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:18:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:18:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:18:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:18:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:18:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:18:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:18:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:18:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:18:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:18:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:18:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:18:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:18:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:18:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:18:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:18:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:18:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:18:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:18:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:18:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:18:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:18:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:18:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:18:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:18:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:18:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:18:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:18:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:18:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:18:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:18:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:18:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:18:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:18:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:18:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:18:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:18:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:18:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:18:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:18:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:18:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:18:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:18:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:18:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:18:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:18:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:18:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:18:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:18:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:18:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:18:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:18:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:18:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:18:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:18:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:18:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:18:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:18:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:18:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:18:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:18:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:18:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:18:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:18:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:18:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:18:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:18:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:18:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:18:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:18:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:18:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:18:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:18:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:18:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:18:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:18:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:18:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:18:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:18:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:18:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:18:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:18:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:18:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:18:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:18:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:18:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:18:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:18:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:18:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:18:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:18:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:18:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:18:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:18:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:18:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:18:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:18:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:18:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:18:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:18:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:18:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:18:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:18:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:18:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:18:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:18:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:18:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:18:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:18:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:18:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:18:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:18:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:18:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:18:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:18:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:18:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:18:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:18:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:18:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:18:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:18:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:18:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:18:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:18:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:18:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:18:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:18:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:18:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:18:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:18:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:18:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:18:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:18:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:18:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:18:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:18:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:18:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:18:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:18:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:18:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:18:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:18:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:18:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:18:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:18:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:18:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:18:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:18:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:18:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:18:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:18:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:18:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:18:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:18:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:18:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:18:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:18:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:18:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:18:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:18:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:18:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:18:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:18:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:18:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:18:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:18:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:18:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:18:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:18:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:18:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:18:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:18:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:18:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:18:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:18:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:18:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:18:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:18:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:18:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:18:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:18:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:18:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:18:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:18:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:18:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:18:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:18:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:18:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:18:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:18:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:18:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:18:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:18:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:18:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:18:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:18:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:18:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:18:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:18:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:18:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:18:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:18:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:18:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:18:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:18:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:18:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:18:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:18:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:18:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:18:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:18:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:18:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:18:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:18:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:18:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:18:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:18:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:18:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:18:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:18:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:18:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:18:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:18:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:18:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:18:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:18:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:18:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:18:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:18:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:18:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:18:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:18:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:18:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:18:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:18:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:18:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:18:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:18:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:18:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:18:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:18:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:18:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:18:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:18:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:18:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:18:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:18:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:18:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:18:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:18:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:18:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:18:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:18:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:18:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:18:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:18:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:18:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:18:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:18:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:18:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:18:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:18:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:18:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:18:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:18:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:18:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:18:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:18:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:18:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:18:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:18:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:18:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:18:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:18:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:561;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:18:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:562;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:18:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:563;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:18:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:18:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:18:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:18:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:18:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:18:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:18:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:18:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:18:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:18:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:18:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:18:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:18:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:18:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:18:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:18:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:18:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:18:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:18:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:18:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:18:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:18:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:18:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:18:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:18:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:18:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:18:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:18:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:18:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:18:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:18:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:18:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:18:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:18:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:18:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:18:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:18:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:18:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:18:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:18:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:18:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:18:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:18:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:606;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:18:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:607;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:18:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:608;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:18:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:609;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:18:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:18:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:756;a:18:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:18:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:18:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:18:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:18:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:18:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:18:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:18:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:18:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:18:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:18:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:18:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:18:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:18:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:18:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:18:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:18:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:18:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:18:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:18:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:18:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:18:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:18:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:18:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:18:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:18:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:18:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:18:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:18:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:18:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:18:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:18:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:18:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:18:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:18:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:18:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:18:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:18:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:18:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:18:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:18:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:18:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:18:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:18:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:18:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:18:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:18:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:18:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:18:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:18:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:18:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:18:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:18:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:18:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:18:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:18:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:18:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:18:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:18:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:18:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:18:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:18:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:18:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:18:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:18:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:18:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:18:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}','no'),(524,'elementor_library_category_children','a:0:{}','yes'),(527,'_site_transient_timeout_community-events-a87ff77ab4fbc6c486f86ac05efe0435','1694553791','no'),(528,'_site_transient_community-events-a87ff77ab4fbc6c486f86ac05efe0435','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"172.71.198.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Mumbai 2023\";s:3:\"url\";s:33:\"https://mumbai.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-10-28 00:00:00\";s:8:\"end_date\";s:19:\"2023-10-29 00:00:00\";s:20:\"start_unix_timestamp\";i:1698431400;s:18:\"end_unix_timestamp\";i:1698517800;s:8:\"location\";a:4:{s:8:\"location\";s:26:\"Mumbai, Maharashtra, India\";s:7:\"country\";s:2:\"IN\";s:8:\"latitude\";d:19.0507572;s:9:\"longitude\";d:72.829808700000001;}}}}','no'),(538,'elementor_1_elementor_updater_batch_3912f6687eea53d05ae8749717fa','a:3:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}i:1;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:27:\"_v_3_16_0_container_updates\";}}i:2;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:31:\"_v_3_17_0_site_settings_updates\";}}}','no'),(541,'_transient_timeout_elementor_remote_info_api_data_3.16.1','1694623495','no'),(542,'_transient_elementor_remote_info_api_data_3.16.1','a:4:{s:9:\"timestamp\";s:10:\"1694578195\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{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:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";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:5:\"6.3.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(561,'_site_transient_timeout_community-events-faef8886f0ee945989686304e29a106f','1694623777','no'),(562,'_site_transient_community-events-faef8886f0ee945989686304e29a106f','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"172.69.87.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Mumbai 2023\";s:3:\"url\";s:33:\"https://mumbai.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-10-28 00:00:00\";s:8:\"end_date\";s:19:\"2023-10-29 00:00:00\";s:20:\"start_unix_timestamp\";i:1698431400;s:18:\"end_unix_timestamp\";i:1698517800;s:8:\"location\";a:4:{s:8:\"location\";s:26:\"Mumbai, Maharashtra, India\";s:7:\"country\";s:2:\"IN\";s:8:\"latitude\";d:19.0507572;s:9:\"longitude\";d:72.829808700000001;}}}}','no'),(563,'_elementor_global_css','a:7:{s:4:\"time\";i:1694583084;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;b:0;s:3:\"css\";s:0:\"\";}','yes'),(564,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:16:{s:5:\"image\";a:2:{s:7:\"content\";s:269:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:15:\"navigation-menu\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:7:\"heading\";a:2:{s:7:\"content\";s:673:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:719:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:7:\"counter\";a:2:{s:7:\"content\";s:549:\"<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>\";s:7:\"version\";s:6:\"3.16.3\";}s:7:\"metform\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.3\";}s:8:\"progress\";a:2:{s:7:\"content\";s:1244:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-progress{text-align:start}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-inline-start:15px}.elementor-progress-percentage{padding-inline-end:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-inline-start:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:12:\"social-icons\";a:2:{s:7:\"content\";s:5051:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:11:\"testimonial\";a:2:{s:7:\"content\";s:1689:\"<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>\";s:7:\"version\";s:6:\"3.16.3\";}s:20:\"eael-image-accordion\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.16.3\";}s:9:\"icon-list\";a:2:{s:7:\"content\";s:132:\"<link rel=\"stylesheet\" href=\"https://athomenoha.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">\";s:7:\"version\";s:6:\"3.21.8\";}s:9:\"image-box\";a:2:{s:7:\"content\";s:1424:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:end;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:start;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:19:\"elementskit-heading\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:21:\"elementskit-image-box\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:9:\"accordion\";a:2:{s:7:\"content\";s:1743:\"<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>\";s:7:\"version\";s:6:\"3.16.3\";}}}}','yes'),(569,'_site_transient_timeout_community-events-c22849b410fc5543faffd6537b41d251','1694627116','no'),(570,'_site_transient_community-events-c22849b410fc5543faffd6537b41d251','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"172.69.86.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Mumbai 2023\";s:3:\"url\";s:33:\"https://mumbai.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-10-28 00:00:00\";s:8:\"end_date\";s:19:\"2023-10-29 00:00:00\";s:20:\"start_unix_timestamp\";i:1698431400;s:18:\"end_unix_timestamp\";i:1698517800;s:8:\"location\";a:4:{s:8:\"location\";s:26:\"Mumbai, Maharashtra, India\";s:7:\"country\";s:2:\"IN\";s:8:\"latitude\";d:19.0507572;s:9:\"longitude\";d:72.829808700000001;}}}}','no'),(573,'_site_transient_timeout_available_translations','1694594816','no'),(574,'_site_transient_available_translations','a:131:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.5/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:8:\"6.2-beta\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-06-18 08:25:23\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"متابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-28 08:07:35\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.23/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-11 09:30:02\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-08 13:02:24\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"চালিয়ে যান\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 20:45:53\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 09:23:37\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-08 07:14:12\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-31 09:54:31\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-19 15:27:26\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-08 09:49:50\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 18:32:34\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.3.1/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 18:29:34\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-18 08:19:14\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-08 09:52:35\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.3.1/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 12:41:04\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-08 16:08:07\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-03 07:25:21\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-03 07:13:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-28 15:57:23\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-28 15:58:51\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-05-17 04:31:21\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-31 02:13:04\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-31 14:12:31\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-04 16:53:05\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-04 13:54:34\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-04-21 13:32:10\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-03-14 22:16:37\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.13/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.18\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.18/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-26 01:50:26\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-06 09:27:17\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-13 03:27:13\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 13:15:12\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 15:42:01\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-04 09:22:09\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-10 17:08:26\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 21:10:41\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-09 07:20:47\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ચાલુ રાખો\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.30\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.30/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-05-28 22:06:16\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-06 07:38:13\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-05 16:40:26\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-02-22 17:37:32\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-06 09:35:55\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-11 11:09:16\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-24 17:16:15\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-04 04:40:32\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2023-05-19 07:40:56\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-05 11:40:39\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.2.2/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.23/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.18\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.18/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2022-10-20 17:15:28\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.3/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-13 00:53:29\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-02 15:00:25\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3.1/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:3:\"kir\";a:8:{s:8:\"language\";s:3:\"kir\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-07 16:18:28\";s:12:\"english_name\";s:6:\"Kyrgyz\";s:11:\"native_name\";s:16:\"Кыргызча\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3.1/kir.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ky\";i:2;s:3:\"kir\";i:3;s:3:\"kir\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Улантуу\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2022-11-24 03:51:58\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.3/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-01 07:05:22\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.5\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.5/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-03 01:58:55\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.23/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.12\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.12/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.35\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.35/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-19 21:47:18\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-08 08:50:11\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 11:01:53\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 11:56:04\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.3.1/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-10 16:26:11\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.22/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-02 09:00:40\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.31\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.31/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-07 15:53:56\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.3.1/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-07 15:44:05\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 11:22:05\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-21 12:17:05\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-12 08:57:19\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 11:43:02\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.13/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-09-06 08:10:59\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-13 11:41:50\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.3.1/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-30 12:28:12\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-19 10:40:17\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.3.1/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.7/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 11:44:44\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.15\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.15/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.35\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.35/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.7\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.7/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.22\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.22/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 22:20:22\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.23\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.23/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.1.3\";s:7:\"updated\";s:19:\"2023-03-04 10:46:30\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.3/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.13\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.13/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2023-07-15 15:30:50\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.2.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-17 14:06:22\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.2.2\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.2.2/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.3.1\";s:7:\"updated\";s:19:\"2023-08-29 16:27:09\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.3.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(587,'_site_transient_timeout_community-events-5a0f3d31ac2399b1db1649d39f1cc67e','1695010264','no'),(588,'_site_transient_community-events-5a0f3d31ac2399b1db1649d39f1cc67e','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"172.69.95.0\";}s:6:\"events\";a:2:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:22:\"Introduction To WP CLI\";s:3:\"url\";s:62:\"https://www.meetup.com/thane-wordpress-meetup/events/296117727\";s:6:\"meetup\";s:22:\"Thane WordPress Meetup\";s:10:\"meetup_url\";s:46:\"https://www.meetup.com/thane-wordpress-meetup/\";s:4:\"date\";s:19:\"2023-09-16 10:00:00\";s:8:\"end_date\";s:19:\"2023-09-16 12:30:00\";s:20:\"start_unix_timestamp\";i:1694838600;s:18:\"end_unix_timestamp\";i:1694847600;s:8:\"location\";a:4:{s:8:\"location\";s:12:\"Thane, India\";s:7:\"country\";s:2:\"IN\";s:8:\"latitude\";d:19.227173000000001;s:9:\"longitude\";d:72.970370000000003;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Mumbai 2023\";s:3:\"url\";s:33:\"https://mumbai.wordcamp.org/2023/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2023-10-28 00:00:00\";s:8:\"end_date\";s:19:\"2023-10-29 00:00:00\";s:20:\"start_unix_timestamp\";i:1698431400;s:18:\"end_unix_timestamp\";i:1698517800;s:8:\"location\";a:4:{s:8:\"location\";s:26:\"Mumbai, Maharashtra, India\";s:7:\"country\";s:2:\"IN\";s:8:\"latitude\";d:19.0507572;s:9:\"longitude\";d:72.829808700000001;}}}}','no'),(599,'_transient_timeout_elementor_remote_templates_data_3.16.3','1694802328','no');
INSERT INTO `wp_options` VALUES (600,'_transient_elementor_remote_templates_data_3.16.3','a:823:{i:0;a:18:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:18:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:18:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:18:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:18:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:18:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:18:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:18:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:18:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:18:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:18:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:18:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:18:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:18:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:18:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:18:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:18:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:18:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:18:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:18:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:18:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:18:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:18:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:18:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:18:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:18:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:18:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:18:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:18:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:18:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:18:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:18:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:18:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:18:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:18:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:18:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:18:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:18:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:18:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:18:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:18:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:18:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:18:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:18:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:18:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:18:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:18:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:18:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:18:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:18:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:18:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:18:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:18:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:18:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:18:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:18:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:18:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:18:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:18:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:18:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:18:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:18:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:18:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:18:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:18:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:18:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:18:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:18:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:18:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:18:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:18:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:18:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:18:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:18:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:18:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:18:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:18:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:18:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:18:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:18:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:18:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:18:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:18:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:18:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:18:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:18:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:18:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:18:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:18:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:18:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:18:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:18:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:18:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:18:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:18:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:18:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:18:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:18:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:18:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:18:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:18:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:18:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:18:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:18:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:18:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:18:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:18:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:18:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:18:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:18:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:18:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:18:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:18:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:18:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:18:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:18:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:18:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:18:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:18:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:18:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:18:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:18:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:18:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:18:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:18:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:18:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:18:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:18:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:18:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:18:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:18:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:18:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:18:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:18:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:18:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:18:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:18:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:18:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:18:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:18:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:18:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:18:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:18:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:18:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:18:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:18:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:18:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:18:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:18:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:18:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:18:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:18:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:18:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:18:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:18:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:18:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:18:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:18:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:18:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:18:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:18:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:18:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:18:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:18:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:18:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:18:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:18:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:18:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:18:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:18:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:18:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:18:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:18:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:18:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:18:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:18:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:18:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:18:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:18:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:18:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:18:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:18:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:18:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:18:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:18:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:18:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:18:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:18:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:18:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:18:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:18:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:18:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:18:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:18:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:18:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:18:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:18:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:18:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:18:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:18:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:18:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:18:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:18:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:18:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:18:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:18:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:18:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:18:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:18:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:18:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:18:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:18:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:18:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:18:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:18:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:18:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:18:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:18:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:18:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:18:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:18:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:18:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:18:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:18:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:18:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:18:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:18:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:18:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:18:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:18:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:18:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:18:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:18:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:18:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:18:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:18:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:18:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:18:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:18:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:18:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:18:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:18:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:18:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:18:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:18:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:18:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:18:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:18:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:18:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:18:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:18:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:18:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:18:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:18:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:18:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:18:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:18:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:18:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:18:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:18:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:18:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:18:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:18:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:18:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:18:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:18:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:18:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:18:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:18:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:18:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:18:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:18:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:18:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:18:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:18:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:18:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:18:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:18:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:18:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:18:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:18:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:18:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:18:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:18:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:18:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:18:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:18:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:18:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:18:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:18:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:18:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:18:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:18:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:18:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:18:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:18:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:18:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:18:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:18:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:18:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:18:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:18:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:18:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:18:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:18:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:18:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:18:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:18:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:18:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:18:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:18:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:18:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:18:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:18:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:18:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:18:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:18:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:18:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:18:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:18:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:18:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:18:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:18:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:18:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:18:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:18:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:18:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:18:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:18:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:18:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:18:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:18:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:18:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:18:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:18:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:18:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:18:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:18:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:18:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:18:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:18:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:18:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:18:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:18:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:18:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:18:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:18:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:18:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:18:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:18:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:18:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:18:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:18:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:18:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:18:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:18:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:18:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:18:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:18:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:18:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:18:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:18:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:18:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:18:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:18:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:18:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:18:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:18:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:18:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:18:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:18:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:18:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:18:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:18:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:18:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:18:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:18:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:18:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:18:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:18:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:18:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:18:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:18:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:18:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:18:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:18:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:18:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:18:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:18:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:18:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:18:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:18:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:18:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:18:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:18:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:18:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:18:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:18:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:18:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:18:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:18:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:18:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:18:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:18:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:18:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:18:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:18:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:18:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:18:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:18:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:18:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:18:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:18:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:18:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:18:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:18:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:18:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:18:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:18:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:18:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:18:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:18:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:18:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:18:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:18:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:18:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:18:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:18:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:18:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:18:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:18:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:18:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:18:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:18:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:18:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:18:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:18:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:18:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:18:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:18:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:18:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:18:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:18:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:18:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:18:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:18:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:18:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:18:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:18:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:18:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:18:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:18:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:18:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:18:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:18:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:18:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:18:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:18:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:18:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:18:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:18:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:18:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:18:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:18:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:18:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:18:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:18:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:18:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:18:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:18:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:18:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:18:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:18:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:18:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:18:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:18:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:18:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:18:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:18:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:18:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:18:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:18:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:18:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:18:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:18:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:18:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:18:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:18:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:18:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:18:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:18:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:18:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:18:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:18:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:18:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:18:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:18:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:18:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:18:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:18:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:18:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:18:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:18:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:18:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:18:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:18:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:18:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:18:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:18:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:18:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:18:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:18:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:18:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:18:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:18:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:18:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:18:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:18:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:18:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:18:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:18:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:18:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:18:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:18:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:18:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:18:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:18:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:18:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:18:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:18:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:18:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:18:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:18:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:18:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:18:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:18:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:18:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:18:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:18:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:18:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:18:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:18:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:18:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:18:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:18:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:18:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:18:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:18:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:18:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:18:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:18:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:18:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:18:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:18:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:18:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:18:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:18:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:18:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:18:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:18:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:18:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:18:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:18:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:18:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:18:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:18:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:18:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:18:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:18:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:18:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:18:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:18:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:18:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:18:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:18:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:18:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:18:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:18:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:18:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:18:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:18:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:18:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:18:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:18:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:18:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:18:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:18:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:18:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:18:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:18:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:18:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:18:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:18:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:18:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:18:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:18:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:18:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:18:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:18:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:18:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:18:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:18:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:18:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:18:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:18:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:18:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:18:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:18:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:18:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:18:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:18:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:18:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:18:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:18:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:18:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:18:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:18:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:18:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:18:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:18:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:18:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:18:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:18:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:18:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:18:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:18:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:18:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:18:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:18:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:18:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:18:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:18:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:18:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:18:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:18:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:18:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:18:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:18:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:18:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:18:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:18:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:18:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:18:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:18:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:18:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:18:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:18:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:18:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:18:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:18:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:18:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:18:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:18:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:18:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:18:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:18:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:18:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:18:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:18:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:18:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:18:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:18:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:18:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:18:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:18:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:18:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:18:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:18:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:18:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:18:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:18:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:18:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:18:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:18:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:18:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:18:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:18:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:18:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:18:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:18:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:18:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:18:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:18:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:18:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:18:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:18:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:18:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:18:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:18:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:18:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:18:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:18:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:18:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:18:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:18:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:18:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:18:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:18:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:18:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:18:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:18:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:18:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:18:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:18:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:18:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:18:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:561;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:18:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:562;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:18:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:563;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:18:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:18:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:18:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:18:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:18:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:18:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:18:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:18:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:18:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:18:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:18:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:18:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:18:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:18:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:18:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:18:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:18:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:18:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:18:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:18:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:18:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:18:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:18:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:18:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:18:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:18:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:18:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:18:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:18:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:18:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:18:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:18:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:18:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:18:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:18:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:18:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:18:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:18:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:18:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:18:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:18:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:18:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:18:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:606;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:18:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:607;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:18:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:608;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:18:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:609;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:18:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:18:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:756;a:18:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:18:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:18:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:18:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:18:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:18:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:18:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:18:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:18:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:18:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:18:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:18:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:18:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:18:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:18:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:18:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:18:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:18:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:18:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:18:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:18:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:18:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:18:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:18:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:18:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:18:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:18:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:18:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:18:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:18:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:18:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:18:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:18:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:18:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:18:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:18:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:18:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:18:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:18:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:18:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:18:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:18:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:18:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:18:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:18:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:18:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:18:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:18:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:18:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:18:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:18:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:18:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:18:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:18:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:18:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:18:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:18:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:18:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:18:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:18:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:18:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:18:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:18:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:18:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:18:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:18:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:18:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}','no'),(609,'_site_transient_timeout_wp_remote_block_patterns_b8add59afb2e706b3afed0d3c1426d84','1694787967','no'),(610,'_site_transient_wp_remote_block_patterns_b8add59afb2e706b3afed0d3c1426d84','a:46:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:310547;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Cover Poster on Left, Paragraph on Right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3610:\"\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-center\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#36220c\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-space-between is-layout-flex wp-container-8 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-cover is-light has-custom-content-position is-position-top-right wp-container-content-2 wp-duotone-rgb137750-rgb210210210-4\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:75vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2023/04/654642d52f20d6367.57324872.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-vertical is-content-justification-right is-nowrap is-layout-flex wp-container-1 wp-block-group-is-layout-flex\">\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:140px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">Wardell</p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:130px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">gray</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#d09c9c;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">Plays</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:0.8;text-transform:uppercase\">Bebop &amp;</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">SWING</p>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-block-group wp-container-content-6 is-vertical is-nowrap is-layout-flex wp-container-7 wp-block-group-is-layout-flex\">\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">Wardell Gray was born in Oklahoma City, the youngest of four children. His early childhood years were spent in Oklahoma, before moving with his family to Detroit in 1929. </p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">In early 1935, Gray began attending Northeastern High School, and then transferred to Cass Technical High School, which is noted for having Donald Byrd, Lucky Thompson and Al McKibbon as alumni. </p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-5 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:700;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color wp-element-button\" style=\"border-radius:0px;color:#e59937;padding-top:16px;padding-right:32px;padding-bottom:16px;padding-left:32px\">Listen Now</a></div>\n</div>\n\n\n\n<div style=\"height:7.5vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:73:\"core/button,core/buttons,core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:6343:\"<!-- wp:cover {\"customOverlayColor\":\"#36220c\",\"contentPosition\":\"top center\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-center\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#36220c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"3vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"stretch\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\"><!-- wp:cover {\"url\":\"https://pd.w.org/2023/04/654642d52f20d6367.57324872.jpg\",\"id\":334,\"dimRatio\":50,\"minHeight\":75,\"minHeightUnit\":\"vh\",\"contentPosition\":\"top right\",\"isDark\":false,\"style\":{\"layout\":{\"selfStretch\":\"fill\"},\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"}},\"color\":{\"duotone\":[\"rgb(137, 75, 0)\",\"rgb(210, 210, 210)\"]}}} -->\n<div class=\"wp-block-cover is-light has-custom-content-position is-position-top-right\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:75vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2023/04/654642d52f20d6367.57324872.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"140px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-6px\"},\"color\":{\"text\":\"#e5683a\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:140px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">Wardell</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"130px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-6px\"},\"color\":{\"text\":\"#e5683a\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e5683a;font-size:130px;font-style:normal;font-weight:800;letter-spacing:-6px;line-height:0.8;text-transform:uppercase\">gray</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"90px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"},\"color\":{\"text\":\"#d09c9c\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#d09c9c;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">Plays</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"90px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"letterSpacing\":\"0px\",\"lineHeight\":\"0.8\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:0.8;text-transform:uppercase\">Bebop &amp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"style\":{\"typography\":{\"fontSize\":\"90px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#e59937;font-size:90px;font-style:normal;font-weight:800;letter-spacing:0px;line-height:1;text-transform:uppercase\">SWING</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"420px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"bottom\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"18px\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1.7\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">Wardell Gray was born in Oklahoma City, the youngest of four children. His early childhood years were spent in Oklahoma, before moving with his family to Detroit in 1929. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"18px\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1.7\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\"},\"color\":{\"text\":\"#e59937\"}}} -->\n<p class=\"has-text-color\" style=\"color:#e59937;font-size:18px;font-style:normal;font-weight:400;letter-spacing:0px;line-height:1.7\">In early 1935, Gray began attending Northeastern High School, and then transferred to Cass Technical High School, which is noted for having Donald Byrd, Lucky Thompson and Al McKibbon as alumni. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"text\":\"#e59937\"},\"border\":{\"radius\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"16px\",\"right\":\"32px\",\"bottom\":\"16px\",\"left\":\"32px\"}},\"typography\":{\"fontSize\":\"16px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:700;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color wp-element-button\" style=\"border-radius:0px;color:#e59937;padding-top:16px;padding-right:32px;padding-bottom:16px;padding-left:32px\">Listen Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":\"7.5vw\"} -->\n<div style=\"height:7.5vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:309935;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Centered image with two-tone background color\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1278:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-11 is-layout-constrained wp-container-12 wp-block-group-is-layout-constrained\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large is-style-default wp-duotone-000000-ffffff-10\"><img decoding=\"async\" src=\"https://pd.w.org/2022/03/3866241b433db4ee2.96648572.jpeg\" alt=\"\" /></figure>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"padding-left:32px;font-size:50px;font-style:normal;font-weight:400;letter-spacing:32px;line-height:1;text-transform:uppercase\">Etcetera</h2>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:18:\"Gradient, Two-Tone\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:57:\"core/cover,core/group,core/heading,core/image,core/spacer\";}s:14:\"category_slugs\";a:3:{i:0;s:6:\"banner\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2134:\"<!-- wp:cover {\"minHeight\":66,\"minHeightUnit\":\"vh\",\"customGradient\":\"linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(90deg,rgb(35,74,20) 50%,rgb(225,137,116) 50%)\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"600px\",\"wideSize\":\"1200px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"color\":{\"duotone\":[\"#000000\",\"#ffffff\"]}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://pd.w.org/2022/03/3866241b433db4ee2.96648572.jpeg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"50px\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"32px\",\"lineHeight\":\"1\"},\"spacing\":{\"padding\":{\"left\":\"32px\"}}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-center has-white-color has-text-color\" style=\"padding-left:32px;font-size:50px;font-style:normal;font-weight:400;letter-spacing:32px;line-height:1;text-transform:uppercase\">Etcetera</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:309925;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:43:\"Fullwidth Dark Banner with Heading Top Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1031:\"\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-left\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#141414\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-333\" alt=\"\" src=\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\" style=\"object-position:50% 0%\" data-object-fit=\"cover\" data-object-position=\"50% 0%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-14 is-vertical is-nowrap is-layout-flex wp-container-15 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left has-text-color has-source-serif-pro-font-family\" style=\"color:#d8a557;font-size:160px;font-style:italic;font-weight:900;letter-spacing:-4px;line-height:0.8;text-transform:none\">bud!</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:16:\"Jazz, Fulllwidth\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1697:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\",\"id\":333,\"dimRatio\":90,\"customOverlayColor\":\"#141414\",\"focalPoint\":{\"x\":0.5,\"y\":0},\"minHeight\":50,\"minHeightUnit\":\"vh\",\"contentPosition\":\"top left\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull has-custom-content-position is-position-top-left\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#141414\"></span><img class=\"wp-block-cover__image-background wp-image-333\" alt=\"\" src=\"https://pd.w.org/2022/07/87262c92d42acd1c3.73206444.jpg\" style=\"object-position:50% 0%\" data-object-fit=\"cover\" data-object-position=\"50% 0%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"fontStyle\":\"italic\",\"fontWeight\":\"900\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\",\"textTransform\":\"none\"},\"color\":{\"text\":\"#d8a557\"}},\"fontFamily\":\"source-serif-pro\"} -->\n<p class=\"has-text-align-left has-text-color has-source-serif-pro-font-family\" style=\"color:#d8a557;font-size:160px;font-style:italic;font-weight:900;letter-spacing:-4px;line-height:0.8;text-transform:none\">bud!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:309230;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:44:\"Fullwidth cover with repeating gradient text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1724:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-36345d-abaaaa-19\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\" style=\"background-color:#c2b7a4\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\" style=\"object-position:50% 5%\" data-object-fit=\"cover\" data-object-position=\"50% 5%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-nowrap is-layout-flex wp-container-17 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-right has-text-color\" style=\"color:#c8c4d3;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ac94b2;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#71689c;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#444178;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:48:\"Fullwidth, Background Image, Gradient, Uppercase\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3135:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\",\"id\":334,\"dimRatio\":60,\"customOverlayColor\":\"#c2b7a4\",\"focalPoint\":{\"x\":0.5,\"y\":0.05},\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#36345d\",\"#abaaaa\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\" style=\"background-color:#c2b7a4\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/95161f850d22f0c06.37817431.jpg\" style=\"object-position:50% 5%\" data-object-fit=\"cover\" data-object-position=\"50% 5%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#c8c4d3\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#c8c4d3;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#ac94b2\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ac94b2;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#71689c\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#71689c;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"},\"color\":{\"text\":\"#444178\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#444178;font-size:148px;font-style:normal;font-weight:300;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">DJANGO</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:309224;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:72:\"Fullwidth, vertically aligned headline on right with description on left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2130:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flex wp-container-26 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-22 is-layout-flow wp-container-23 wp-block-group-is-layout-flow\">\n<p class=\"wp-container-content-20\" style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let &#8217;em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Shop Now</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-24 is-layout-flow wp-container-25 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>&#8216;EM<br>Roll</p>\n\n\n\n<p class=\"has-text-align-right has-white-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:60:\"vertically, bold, jazz, shop, store, headline, hero, product\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:61:\"core/button,core/buttons,core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3726:\"<!-- wp:cover {\"customOverlayColor\":\"#e68b14\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"5vw\",\"right\":\"5vw\",\"bottom\":\"5vw\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:5vw;padding-right:5vw;padding-bottom:5vw;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#e68b14\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"320px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"330px\"},\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"lineHeight\":\"1.4\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"}}} -->\n<p style=\"font-size:17px;font-style:normal;font-weight:300;letter-spacing:0px;line-height:1.4;text-decoration:none;text-transform:none\">Let \'em Roll is an album by American organist Big John Patton recorded in 1965 and released on the Blue Note label.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"14px\",\"bottom\":\"14px\",\"left\":\"36px\",\"right\":\"36px\"}},\"border\":{\"radius\":\"0px\",\"top\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"right\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"bottom\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"},\"left\":{\"radius\":\"0px\",\"width\":\"0px\",\"style\":\"none\"}}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;border-top-style:none;border-top-width:0px;border-right-style:none;border-right-width:0px;border-bottom-style:none;border-bottom-width:0px;border-left-style:none;border-left-width:0px;padding-top:14px;padding-right:36px;padding-bottom:14px;padding-left:36px\">Shop Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Let<br>\'EM<br>Roll</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.8\",\"letterSpacing\":\"-4px\"}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-right has-white-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-4px;line-height:0.8;text-transform:uppercase\">Big<br>John<br>Patton</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:309236;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:60:\"Fullwidth headline with links and gradient offset background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1893:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:5vw;padding-bottom:48px;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-space-between is-layout-flex wp-container-33 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-28 is-layout-flow wp-container-29 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-left has-white-color has-text-color has-link-color wp-elements-52dc92f2ee4b8dfde042239a7e68e30d\" style=\"font-size:172px;font-style:normal;font-weight:700;letter-spacing:-10px;line-height:0.7;text-transform:uppercase\"><strong>MONK</strong>.</p>\n</div>\n\n\n\n<div class=\"wp-block-group wp-container-content-31 is-layout-flow wp-container-32 wp-block-group-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-30 wp-block-group-is-layout-flex\">\n<p class=\"has-white-color has-text-color has-link-color wp-elements-c8902903bdf5ea1baed310a565cbd10e\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">A new collection</p>\n\n\n\n<p class=\"has-white-color has-text-color has-link-color wp-elements-669af571686ebf2235f18cd2403659b5\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">Learn More → </p>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:260px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:41:\"Offset, Gradient, Jazz, Headline, Feature\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:48:\"core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3195:\"<!-- wp:cover {\"customGradient\":\"linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"5vw\",\"bottom\":\"48px\",\"left\":\"5vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:5vw;padding-bottom:48px;padding-left:5vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim has-background-gradient\" style=\"background:linear-gradient(180deg,rgb(0,0,0) 39%,rgb(83,80,123) 39%)\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"172px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.7\",\"letterSpacing\":\"-10px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-text-align-left has-white-color has-text-color has-link-color\" style=\"font-size:172px;font-style:normal;font-weight:700;letter-spacing:-10px;line-height:0.7;text-transform:uppercase\"><strong>MONK</strong>.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"400px\"},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">A new collection</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textDecoration\":\"none\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\" style=\"font-size:17px;font-style:normal;font-weight:700;letter-spacing:0px;text-decoration:none;text-transform:uppercase\">Learn More → </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"260px\"} -->\n<div style=\"height:260px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:308937;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Heading, Paragraph, Button with Two Images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2550:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#eb4c77\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-layout-flex wp-container-45 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group alignwide wp-container-content-36 is-content-justification-left is-layout-constrained wp-container-37 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-contrast-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:500;line-height:0.9;text-transform:none\">Time for an adventure</h2>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-left has-contrast-color has-text-color\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-35 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:16px;font-style:normal;font-weight:500;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-44 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-40 is-layout-flow wp-block-group-is-layout-flow\">\n<div style=\"height:8vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large wp-container-content-38 wp-duotone-rgb000-rgb21788120-39\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large wp-container-content-42 wp-duotone-rgb000-rgb21788120-43\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></figure>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:4102:\"<!-- wp:cover {\"customOverlayColor\":\"#eb4c77\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"6vw\",\"right\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#eb4c77\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"center\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\"}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"600px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"none\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"0.9\"}},\"textColor\":\"contrast\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-contrast-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:500;line-height:0.9;text-transform:none\">Time for an adventure</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"contrast\"} -->\n<p class=\"has-text-align-left has-contrast-color has-text-color\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"contrast\",\"textColor\":\"base\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:16px;font-style:normal;font-weight:500;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fit\",\"flexSize\":null},\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"verticalAlignment\":\"top\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"8vw\"} -->\n<div style=\"height:8vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"},\"color\":{\"duotone\":[\"rgb(0, 0, 0)\",\"rgb(217, 88, 120)\"]}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"},\"color\":{\"duotone\":[\"rgb(0, 0, 0)\",\"rgb(217, 88, 120)\"]}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:308949;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:42:\"Bold sale banner with geometric background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1663:\"\n<div class=\"wp-block-cover alignfull wp-duotone-rgb4448102-ffb23d-50\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-flow wp-container-48 wp-block-group-is-layout-flow\">\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20% Off</p>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-47 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Shop Now</a></div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:43:\"store, shop, coupon, jazz, background image\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:73:\"core/button,core/buttons,core/cover,core/group,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2819:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\",\"id\":334,\"dimRatio\":90,\"customOverlayColor\":\"#2c3066\",\"minHeight\":50,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(44, 48, 102)\",\"#ffb23d\"]}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:50vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-90 has-background-dim\" style=\"background-color:#2c3066\"></span><img class=\"wp-block-cover__image-background wp-image-334\" alt=\"\" src=\"https://pd.w.org/2022/01/2661f82cd1ba9172.16386413.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Enjoy</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"160px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffb23d\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#ffb23d;font-size:160px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">20% Off</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"background\":\"#ffb23d\",\"text\":\"#2c3066\"},\"spacing\":{\"padding\":{\"top\":\"32px\",\"right\":\"48px\",\"bottom\":\"32px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"20px\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}}} -->\n<div class=\"wp-block-button has-custom-font-size\" style=\"font-size:20px;font-style:normal;font-weight:700;letter-spacing:1px;text-transform:uppercase\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#2c3066;background-color:#ffb23d;padding-top:32px;padding-right:48px;padding-bottom:32px;padding-left:48px\">Shop Now</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:308924;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Offset bold paragraph text with varying opacity\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1592:\"\n<div class=\"wp-block-cover alignfull has-white-color has-text-color\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-51 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffff61;font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">Embark</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffff73;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\"><strong>ON A HIKING</strong></p>\n\n\n\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffffad;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">adventure and explore the beauty of nature&#8217;s best…</p>\n\n\n\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffffd1;font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">In the</p>\n\n\n\n<p class=\"has-text-align-left has-text-color\" style=\"color:#fffffff5;font-size:162px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">WOODS.</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3052:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}}},\"textColor\":\"white\"} -->\n<div class=\"wp-block-cover alignfull has-white-color has-text-color\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"700px\",\"contentSize\":\"700px\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"120px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffffff61\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffff61;font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">Embark</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"72px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#ffffff73\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffff73;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\"><strong>ON A HIKING</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"72px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#ffffffad\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#ffffffad;font-size:72px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">adventure and explore the beauty of nature\'s best…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#ffffffd1\"}}} -->\n<p class=\"has-text-align-right has-text-color\" style=\"color:#ffffffd1;font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">In the</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"162px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1\",\"letterSpacing\":\"-2px\"},\"color\":{\"text\":\"#fffffff5\"}}} -->\n<p class=\"has-text-align-left has-text-color\" style=\"color:#fffffff5;font-size:162px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:1;text-transform:uppercase\">WOODS.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:308916;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Offset text with a brutalist design vibe\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1389:\"\n<div class=\"wp-block-cover alignfull is-light has-black-color has-text-color\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffb43c\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-53 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\"><mark style=\"color:#a65a00\" class=\"has-inline-color\">✴︎</mark> Walk</p>\n\n\n\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">In the</p>\n\n\n\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Park</p>\n\n\n\n<p class=\"has-text-align-center has-text-color\" style=\"color:#a65a00;font-size:140px;font-style:italic;font-weight:200;letter-spacing:0px;line-height:0.9;text-transform:uppercase\">—01.03</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:36:\"core/cover,core/group,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2631:\"<!-- wp:cover {\"customOverlayColor\":\"#ffb43c\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}}},\"textColor\":\"black\"} -->\n<div class=\"wp-block-cover alignfull is-light has-black-color has-text-color\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffb43c\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"1200px\",\"contentSize\":\"800px\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\"><mark style=\"color:#a65a00\" class=\"has-inline-color\">✴︎</mark> Walk</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-right has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">In the</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"148px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"0.9\",\"letterSpacing\":\"-2px\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:148px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase\">Park</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"140px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"italic\",\"fontWeight\":\"200\",\"letterSpacing\":\"0px\",\"lineHeight\":\"0.9\"},\"color\":{\"text\":\"#a65a00\"}}} -->\n<p class=\"has-text-align-center has-text-color\" style=\"color:#a65a00;font-size:140px;font-style:italic;font-weight:200;letter-spacing:0px;line-height:0.9;text-transform:uppercase\">—01.03</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:308901;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Fullscreen image with right content area\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2040:\"\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#376a23\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-flex wp-container-59 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large wp-container-content-55\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n\n\n\n<div class=\"wp-block-group alignwide wp-container-content-57 is-content-justification-left is-layout-constrained wp-container-58 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-black-color has-text-color\" style=\"font-size:80px;font-style:italic;font-weight:700;line-height:1.0;text-transform:uppercase\">wAndering through the woods</h2>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:18px;font-style:italic;font-weight:600\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n\n\n\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-56 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:18px;font-style:italic;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n</div>\n</div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:97:\"core/button,core/buttons,core/cover,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3261:\"<!-- wp:cover {\"customOverlayColor\":\"#376a23\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"},\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"margin-top:0;padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#376a23\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"0px\"},\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\",\"contentSize\":\"600px\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:heading {\"textAlign\":\"left\",\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"80px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"italic\",\"fontWeight\":\"700\",\"lineHeight\":\"1.0\"}},\"textColor\":\"black\"} -->\n<h2 class=\"wp-block-heading alignwide has-text-align-left has-black-color has-text-color\" style=\"font-size:80px;font-style:italic;font-weight:700;line-height:1.0;text-transform:uppercase\">wAndering through the woods</h2>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"18px\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\"}},\"textColor\":\"black\"} -->\n<p class=\"has-text-align-left has-black-color has-text-color\" style=\"font-size:18px;font-style:italic;font-weight:600\">Explore our network of trails that lead through a variety of woodland habitats and observe the diverse flora that call this area home. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"60px\"} -->\n<div style=\"height:60px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"backgroundColor\":\"black\",\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"18px\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-fill\" style=\"font-size:18px;font-style:italic;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-black-background-color has-text-color has-background wp-element-button\" style=\"border-radius:0px;padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Sign up</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:308871;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:46:\"Cover Image with Bold Heading and Button, Left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1525:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-094850-f9644e-64\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-left is-layout-constrained wp-container-61 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading has-text-align-left has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Take a hike and wAnder through the woods</h2>\n</div>\n\n\n\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-nowrap is-layout-flex wp-container-62 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2443:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"#094850\",\"#f9644e\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2021/12/12261b91fba359867.64939140.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"constrained\",\"contentSize\":\"75%\",\"justifyContent\":\"left\",\"wideSize\":\"75%\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading has-text-align-left has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Take a hike and wAnder through the woods</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"72px\"} -->\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:308868;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:40:\"Cover Image with Bold Heading and Button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1533:\"\n<div class=\"wp-block-cover alignfull is-light wp-duotone-rgb4247103-rgb21419442-68\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-65 wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading has-text-align-center has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Embark on a hiking adventure and explore the beauty of the woods.</h2>\n</div>\n\n\n\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-nowrap is-layout-flex wp-container-66 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:71:\"core/button,core/buttons,core/cover,core/group,core/heading,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2449:\"<!-- wp:cover {\"url\":\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\",\"id\":335,\"dimRatio\":30,\"minHeight\":66,\"minHeightUnit\":\"vh\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"48px\",\"right\":\"48px\",\"bottom\":\"48px\",\"left\":\"48px\"},\"margin\":{\"top\":\"0\"}},\"color\":{\"duotone\":[\"rgb(42, 47, 103)\",\"rgb(214, 194, 42)\"]}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-335\" alt=\"\" src=\"https://pd.w.org/2022/01/26061d763eca13bb6.11341561.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"48px\"}},\"layout\":{\"type\":\"constrained\",\"wideSize\":\"80%\"}} -->\n<div class=\"wp-block-group\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":\"100px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"letterSpacing\":\"0px\",\"lineHeight\":\"1\"}},\"textColor\":\"white\"} -->\n<h2 class=\"wp-block-heading has-text-align-center has-white-color has-text-color\" style=\"font-size:100px;font-style:normal;font-weight:700;letter-spacing:0px;line-height:1;text-transform:uppercase\">Embark on a hiking adventure and explore the beauty of the woods.</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"72px\"} -->\n<div style=\"height:72px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"white\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"24px\",\"right\":\"48px\",\"bottom\":\"24px\",\"left\":\"48px\"}},\"typography\":{\"fontSize\":\"16px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"0px\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button has-custom-font-size is-style-outline\" style=\"font-size:16px;font-style:normal;font-weight:600;letter-spacing:0px;text-transform:uppercase\"><a class=\"wp-block-button__link has-white-color has-text-color wp-element-button\" style=\"padding-top:24px;padding-right:48px;padding-bottom:24px;padding-left:48px\">Explore</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:cover -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:303828;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:30:\"Fullscreen cover image gallery\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:895:\"\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-center is-nowrap is-layout-flex wp-container-69 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img decoding=\"async\" src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:43:\"gallery, images, columns, background, cover\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:32:\"core/cover,core/group,core/image\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1259:\"<!-- wp:cover {\"overlayColor\":\"black\",\"minHeight\":66,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4vw\",\"right\":\"4vw\",\"bottom\":\"4vw\",\"left\":\"4vw\"}}}} -->\n<div class=\"wp-block-cover alignfull\" style=\"padding-top:4vw;padding-right:4vw;padding-bottom:4vw;padding-left:4vw;min-height:66vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-100 has-background-dim\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4vw\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/84661f60659149cc8.02053291.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"https://thato.test/?page_id=28\"><img src=\"https://pd.w.org/2022/01/21261f60ba46147b0.97888240.jpg\" alt=\"\" /></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\";}i:14;O:8:\"stdClass\":7:{s:2:\"id\";i:277265;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth posts with uppercase titles\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6993:\"\n<div class=\"wp-block-query alignfull is-layout-flow wp-block-query-is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><ul style=\"text-transform:none;\" class=\"wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow\"><li class=\"wp-block-post post-2071 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-72 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-71 wp-block-group-is-layout-flex\">\n<p>✴︎</p>\n\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; text-transform:uppercase;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date has-small-font-size wp-elements-4003f76eccbf507a9e3d7e84a42ea154\"><time datetime=\"2021-07-06T21:31:35+00:00\">Jul 6, 2021</time></div></div>\n\n\n<div style=\"text-transform:uppercase\" class=\"taxonomy-category has-link-color has-text-color has-contrast-color wp-block-post-terms wp-elements-d846021732facad792835971f80af878\"><span class=\"wp-block-post-terms__prefix\">✴︎ </span><a href=\"https://wordpress.org/patterns/category/space/\" rel=\"tag\">Space</a></div></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-75 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><h2 style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:5.2rem;font-style:normal;font-weight:500;line-height:1.1;text-transform:uppercase;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-eba6f7f6e0a9160611aa886fe4e31449 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/jupiter/\" target=\"_self\" >Jupiter</a></h2></div>\n\n</li><li class=\"wp-block-post post-2069 post type-post status-publish format-standard hentry category-space tag-stars\">\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-77 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-76 wp-block-group-is-layout-flex\">\n<p>✴︎</p>\n\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; text-transform:uppercase;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date has-small-font-size wp-elements-4003f76eccbf507a9e3d7e84a42ea154\"><time datetime=\"2021-07-06T21:30:31+00:00\">Jul 6, 2021</time></div></div>\n\n\n<div style=\"text-transform:uppercase\" class=\"taxonomy-category has-link-color has-text-color has-contrast-color wp-block-post-terms wp-elements-d846021732facad792835971f80af878\"><span class=\"wp-block-post-terms__prefix\">✴︎ </span><a href=\"https://wordpress.org/patterns/category/space/\" rel=\"tag\">Space</a></div></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-80 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><h2 style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:5.2rem;font-style:normal;font-weight:500;line-height:1.1;text-transform:uppercase;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-eba6f7f6e0a9160611aa886fe4e31449 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/star-clusters-in-hurcules/\" target=\"_self\" >Star Clusters in Hurcules</a></h2></div>\n\n</li><li class=\"wp-block-post post-2067 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-82 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-81 wp-block-group-is-layout-flex\">\n<p>✴︎</p>\n\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; text-transform:uppercase;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date has-small-font-size wp-elements-4003f76eccbf507a9e3d7e84a42ea154\"><time datetime=\"2021-07-05T21:29:00+00:00\">Jul 5, 2021</time></div></div>\n\n\n<div style=\"text-transform:uppercase\" class=\"taxonomy-category has-link-color has-text-color has-contrast-color wp-block-post-terms wp-elements-d846021732facad792835971f80af878\"><span class=\"wp-block-post-terms__prefix\">✴︎ </span><a href=\"https://wordpress.org/patterns/category/space/\" rel=\"tag\">Space</a></div></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-85 wp-block-group-is-layout-flex\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><h2 style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:5.2rem;font-style:normal;font-weight:500;line-height:1.1;text-transform:uppercase;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-eba6f7f6e0a9160611aa886fe4e31449 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/saturn/\" target=\"_self\" >Saturn</a></h2></div>\n\n</li></ul></div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:16px;padding-bottom:var(--wp--preset--spacing--30);padding-left:16px\"><nav class=\"wp-block-query-pagination is-content-justification-left is-nowrap is-layout-flex wp-container-88 wp-block-query-pagination-is-layout-flex\" aria-label=\"Pagination\">\n\n\n<a href=\"/patterns/wp-json/wp/v2/wporg-pattern?page=1&#038;per_page=100&#038;order=desc&#038;orderby=date&#038;locale=en_US&#038;wp-version=6.3.1&#038;pattern-keywords=11&#038;_fields=id%2Ctitle%2Ccontent%2Cmeta%2Ccategory_slugs%2Ckeyword_slugs%2Cpattern_content&#038;query-31-page=2\" style=\"text-transform:uppercase;\" class=\"wp-block-query-pagination-next has-small-font-size\">Next</a>\n</nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:30:\"star, posts, loop, blog, index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and start accents.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:182:\"core/group,core/paragraph,core/post-date,core/post-template,core/post-terms,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3502:\"<!-- wp:query {\"queryId\":31,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:post-template {\"style\":{\"typography\":{\"textTransform\":\"none\"}}} -->\n<!-- wp:group {\"style\":{\"border\":{\"bottom\":{\"color\":\"var:preset|color|contrast\",\"width\":\"1px\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"16px\",\"right\":\"16px\",\"bottom\":\"16px\",\"left\":\"16px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:16px;padding-right:16px;padding-bottom:16px;padding-left:16px\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p>✴︎</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"M j, Y\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"textTransform\":\"uppercase\"}},\"textColor\":\"contrast\",\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-terms {\"term\":\"category\",\"prefix\":\"✴︎ \",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"textTransform\":\"uppercase\"}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"16px\",\"bottom\":\"var:preset|spacing|70\",\"right\":\"16px\",\"left\":\"16px\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:16px;padding-right:16px;padding-bottom:var(--wp--preset--spacing--70);padding-left:16px\"><!-- wp:post-title {\"isLink\":true,\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"layout\":{\"selfStretch\":\"fit\"},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.1\",\"textTransform\":\"uppercase\",\"fontSize\":\"5.2rem\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"right\":\"16px\",\"left\":\"16px\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--30);padding-right:16px;padding-bottom:var(--wp--preset--spacing--30);padding-left:16px\"><!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<!-- wp:query-pagination-previous {\"label\":\"Previous\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:query-pagination-next {\"label\":\"Next\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\"}},\"fontSize\":\"small\"} /-->\n<!-- /wp:query-pagination --></div>\n<!-- /wp:group --></div>\n<!-- /wp:query -->\";}i:15;O:8:\"stdClass\":7:{s:2:\"id\";i:277127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Fullwidth posts titles with dates\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6511:\"\n<div class=\"wp-block-query alignfull is-layout-flow wp-block-query-is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><ul style=\"text-transform:none;\" class=\"alignfull wp-block-post-template is-layout-flow wp-block-post-template-is-layout-flow\"><li class=\"wp-block-post post-2071 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-93 wp-block-group-is-layout-flow\" style=\"padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-91 wp-block-group-is-layout-flex\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-5813a8450eb0347cfdf34f1870882db6\"><time datetime=\"2021-07-06T21:31:35+00:00\">07.6</time></div>\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-672016f5c95dcb277e0d666c7795c645\"><time datetime=\"2021-07-06T21:31:35+00:00\">2021</time></div></div>\n\n\n<h2 style=\"padding-top:var(--wp--preset--spacing--30); font-size:4.6rem;font-style:normal;font-weight:600;line-height:1.1;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-b5fa43084743aafd1d185f08a32e7678 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/jupiter/\" target=\"_self\" >Jupiter</a></h2></div>\n\n</li><li class=\"wp-block-post post-2069 post type-post status-publish format-standard hentry category-space tag-stars\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-96 wp-block-group-is-layout-flow\" style=\"padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-94 wp-block-group-is-layout-flex\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-5813a8450eb0347cfdf34f1870882db6\"><time datetime=\"2021-07-06T21:30:31+00:00\">07.6</time></div>\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-672016f5c95dcb277e0d666c7795c645\"><time datetime=\"2021-07-06T21:30:31+00:00\">2021</time></div></div>\n\n\n<h2 style=\"padding-top:var(--wp--preset--spacing--30); font-size:4.6rem;font-style:normal;font-weight:600;line-height:1.1;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-b5fa43084743aafd1d185f08a32e7678 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/star-clusters-in-hurcules/\" target=\"_self\" >Star Clusters in Hurcules</a></h2></div>\n\n</li><li class=\"wp-block-post post-2067 post type-post status-publish format-standard hentry category-space tag-planet\">\n\n<div class=\"wp-block-group is-layout-flow wp-container-99 wp-block-group-is-layout-flow\" style=\"padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-97 wp-block-group-is-layout-flex\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-5813a8450eb0347cfdf34f1870882db6\"><time datetime=\"2021-07-05T21:29:00+00:00\">07.5</time></div>\n\n<div style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0; font-size:2rem;font-style:normal;font-weight:600;letter-spacing:1px;\" class=\"has-text-align-left has-link-color has-text-color has-contrast-color wp-block-post-date wp-elements-672016f5c95dcb277e0d666c7795c645\"><time datetime=\"2021-07-05T21:29:00+00:00\">2021</time></div></div>\n\n\n<h2 style=\"padding-top:var(--wp--preset--spacing--30); font-size:4.6rem;font-style:normal;font-weight:600;line-height:1.1;\" class=\"has-link-color has-text-color has-contrast-color wp-block-post-title wp-elements-b5fa43084743aafd1d185f08a32e7678 is-layout-flow wp-block-post-title-is-layout-flow\"><a href=\"https://wordpress.org/patterns/saturn/\" target=\"_self\" >Saturn</a></h2></div>\n\n</li></ul></div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><nav class=\"wp-block-query-pagination is-content-justification-space-between is-nowrap is-layout-flex wp-container-102 wp-block-query-pagination-is-layout-flex\" aria-label=\"Pagination\">\n\n\n<a href=\"/patterns/wp-json/wp/v2/wporg-pattern?page=1&#038;per_page=100&#038;order=desc&#038;orderby=date&#038;locale=en_US&#038;wp-version=6.3.1&#038;pattern-keywords=11&#038;_fields=id%2Ctitle%2Ccontent%2Cmeta%2Ccategory_slugs%2Ckeyword_slugs%2Cpattern_content&#038;query-1-page=2\" style=\"font-size:2rem;font-style:normal;font-weight:600;text-transform:uppercase;letter-spacing:1px;\" class=\"wp-block-query-pagination-next\">Next Page</a>\n</nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:31:\"Posts, Query, Loop, Blog, Index\";s:16:\"wpop_description\";s:62:\"A fullwidth posts pattern with large titles and numeral dates.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/query\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:151:\"core/group,core/post-date,core/post-template,core/post-title,core/query,core/query-pagination,core/query-pagination-next,core/query-pagination-previous\";}s:14:\"category_slugs\";a:1:{i:0;s:5:\"query\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3583:\"<!-- wp:query {\"queryId\":1,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-query alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"0\",\"right\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:0;padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:post-template {\"align\":\"full\",\"style\":{\"typography\":{\"textTransform\":\"none\"}}} -->\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\",\"padding\":{\"bottom\":\"var:preset|spacing|50\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"padding-bottom:var(--wp--preset--spacing--50)\"><!-- wp:group {\"style\":{\"border\":{\"bottom\":{\"color\":\"var:preset|color|contrast\",\"width\":\"4px\"}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group\" style=\"border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:4px;padding-top:var(--wp--preset--spacing--30);padding-right:0;padding-bottom:var(--wp--preset--spacing--30);padding-left:0\"><!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"m.j\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"letterSpacing\":\"1px\",\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"contrast\"} /-->\n\n<!-- wp:post-date {\"textAlign\":\"left\",\"format\":\"Y\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"typography\":{\"letterSpacing\":\"1px\",\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:post-title {\"isLink\":true,\"style\":{\"layout\":{\"selfStretch\":\"fit\"},\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"4.6rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\"}}},\"textColor\":\"contrast\"} /--></div>\n<!-- /wp:group -->\n<!-- /wp:post-template --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:query-pagination {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<!-- wp:query-pagination-previous {\"style\":{\"typography\":{\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\"}}} /-->\n\n<!-- wp:query-pagination-next {\"style\":{\"typography\":{\"fontSize\":\"2rem\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"textTransform\":\"uppercase\",\"letterSpacing\":\"1px\"}}} /-->\n<!-- /wp:query-pagination --></div>\n<!-- /wp:group --></div>\n<!-- /wp:query -->\";}i:16;O:8:\"stdClass\":7:{s:2:\"id\";i:229116;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Fullwidth header with hero image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4827:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-109 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group is-layout-flex wp-container-106 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-105 wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-block-site-title has-medium-font-size wp-elements-234e57400cf5587740bb7caa261d6fc4\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n</div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-108 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-107\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-107\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-107-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;min-height:40vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-0 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Header on a white background followed by a full-width hero image.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2566:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"id\":61,\"dimRatio\":0,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":40,\"minHeightUnit\":\"vw\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"margin-top:0;min-height:40vw\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"50px\"} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:17;O:8:\"stdClass\":7:{s:2:\"id\";i:229092;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Header inside full-width background image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4895:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30);min-height:50px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-group alignwide has-base-color has-text-color has-link-color wp-elements-a5c55c350363e1349d710a58148fd7b6 is-content-justification-space-between is-layout-flex wp-container-115 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><div class=\"is-default-size is-style-default wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color has-text-color has-white-color wp-block-site-title has-medium-font-size wp-elements-e24c80986e13ab3d929b38d6b46e3019\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n<nav class=\"has-text-color has-white-color is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-114 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-113\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-113\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-113-content\">\n							<ul class=\"wp-block-navigation__container has-text-color has-white-color is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\n\n\n<div style=\"height:33vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:100:\"Simple header with logo, site title, navigation and a full-width background image with dark overlay.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:80:\"core/cover,core/group,core/navigation,core/site-logo,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2554:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"id\":61,\"dimRatio\":50,\"overlayColor\":\"black\",\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":50,\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}}} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30);min-height:50px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-61\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|base\"}}},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"textColor\":\"base\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide has-base-color has-text-color has-link-color\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"className\":\"is-style-default\"} /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"textColor\":\"white\",\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"textColor\":\"white\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"33vw\"} -->\n<div style=\"height:33vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:18;O:8:\"stdClass\":7:{s:2:\"id\";i:229097;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Simple header with dark background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3967:\"\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-4956719e1d36ae31d9fb9c185b0a148a is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-121 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-block-site-title wp-elements-f1e98d6c897e424c7d4e8232ded39f0a\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-120 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-119\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-119\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-119-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:76:\"Simple header with logo, site title, navigation links and a dark background.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1232:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:19;O:8:\"stdClass\":7:{s:2:\"id\";i:229101;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Text-only header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3727:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-126 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-block-site-title wp-elements-d6202aa7d337f2ce08aedc8ed261a84e\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-125 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-124\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-124\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-124-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:53:\"Header with site title, tagline and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:60:\"core/group,core/navigation,core/site-tagline,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:966:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /-->\n\n<!-- wp:site-tagline /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:20;O:8:\"stdClass\":7:{s:2:\"id\";i:229105;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Simple header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4296:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-7479bd1e590756c4aa927894dbdbef4e is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-132 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-container-129 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-128 wp-block-group-is-layout-flex\"><h1 class=\"has-link-color wp-block-site-title wp-elements-d6202aa7d337f2ce08aedc8ed261a84e\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"wp-block-site-tagline has-small-font-size\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n</div>\n\n\n<nav class=\"has-small-font-size is-responsive items-justified-right is-fallback wp-block-navigation has-small-font-size is-content-justification-right is-layout-flex wp-container-131 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-130\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-130\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-130-content\">\n							<ul class=\"wp-block-navigation__container has-small-font-size is-responsive items-justified-right is-fallback wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:92:\"Header with site logo, title and tagline on the left and with navigation links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/navigation,core/site-logo,core/site-tagline,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1389:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"4px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /-->\n\n<!-- wp:site-tagline {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:21;O:8:\"stdClass\":7:{s:2:\"id\";i:229111;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:36:\"Fullwidth site title and menu button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3499:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-e0434f7bbe3c9d87e2f1562e19b734da is-content-justification-space-between is-layout-flex wp-container-136 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><h1 class=\"wp-block-site-title\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-135 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open always-shown\" data-micromodal-trigger=\"modal-134\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container hidden-by-default \" style=\"\" id=\"modal-134\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-134-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Header with site title and a hamburger menu button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:794:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:site-title /-->\n\n<!-- wp:navigation {\"overlayMenu\":\"always\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group -->\";}i:22;O:8:\"stdClass\":7:{s:2:\"id\";i:229080;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:25:\"Centered header with logo\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3794:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-vertical is-content-justification-center is-layout-flex wp-container-139 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color has-text-color has-contrast-color wp-block-site-title has-large-font-size wp-elements-9728cce79011b64628d7f6beff066787\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<nav class=\"is-responsive items-justified-center is-fallback wp-block-navigation is-content-justification-center is-layout-flex wp-container-138 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-137\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-137\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-137-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-center is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Center aligned header with logo, site title and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:926:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"center\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:23;O:8:\"stdClass\":7:{s:2:\"id\";i:229084;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Fullwidth header with large font size\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3627:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color wp-elements-4b5a1e7a31f9f44eaeb3ab45e5ae60f1 is-content-justification-space-between is-layout-flex wp-container-143 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><h1 class=\"wp-block-site-title has-large-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<nav class=\"has-large-font-size is-responsive items-justified-right is-fallback wp-block-navigation has-large-font-size is-content-justification-right is-layout-flex wp-container-142 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-141\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-141\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-141-content\">\n							<ul class=\"wp-block-navigation__container has-large-font-size is-responsive items-justified-right is-fallback wp-block-navigation has-large-font-size\"><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-large-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:80:\"Header with a large site title and navigation links in the same large font size.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:42:\"core/group,core/navigation,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:811:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color has-link-color\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:site-title {\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"large\"} /--></div>\n<!-- /wp:group -->\";}i:24;O:8:\"stdClass\":7:{s:2:\"id\";i:229088;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Simple header\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3830:\"\n<div class=\"wp-block-group alignfull is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-147 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-container-144 wp-block-group-is-layout-flex\"><div class=\"is-default-size wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n<h1 class=\"has-link-color wp-block-site-title wp-elements-d6202aa7d337f2ce08aedc8ed261a84e\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n<nav class=\"is-responsive items-justified-right is-fallback wp-block-navigation is-content-justification-right is-layout-flex wp-container-146 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-145\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-145\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-145-content\">\n							<ul class=\"wp-block-navigation__container is-responsive items-justified-right is-fallback wp-block-navigation\"><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\" wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Simple header with logo, site title and navigation.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/header\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:57:\"core/group,core/navigation,core/site-logo,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1021:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|30\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|30\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|contrast\"}}}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:25;O:8:\"stdClass\":7:{s:2:\"id\";i:229123;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4180:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color is-vertical is-content-justification-center is-layout-flex wp-container-151 wp-block-group-is-layout-flex\" style=\"min-height:30vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-group is-nowrap is-layout-flex wp-container-150 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only is-nowrap is-layout-flex wp-container-149 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-twitter  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:82:\"Centered footer with the sentence \"Proudly powered by WordPress\" and social links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:25:\"core/group,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1495:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|50\",\"top\":\"var:preset|spacing|60\"},\"blockGap\":\"var:preset|spacing|40\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}},\"dimensions\":{\"minHeight\":\"30vh\"}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color\" style=\"min-height:30vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"24px\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"8px\",\"left\":\"8px\"}}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:26;O:8:\"stdClass\":7:{s:2:\"id\";i:229127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Footer with search, site title, and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2962:\"\n<div class=\"wp-block-group alignfull has-background is-layout-constrained wp-block-group-is-layout-constrained\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-158 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group wp-container-content-153 is-content-justification-left is-layout-constrained wp-container-154 wp-block-group-is-layout-constrained\">\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Search</p>\n\n\n<form role=\"search\" method=\"get\" action=\"https://wordpress.org/patterns/\" class=\"wp-block-search__button-outside wp-block-search__icon-button wp-block-search\"><label class=\"wp-block-search__label screen-reader-text\" for=\"wp-block-search__input-152\" >Search</label><div class=\"wp-block-search__inside-wrapper \"  style=\"width: 100%\"><input class=\"wp-block-search__input\" id=\"wp-block-search__input-152\" placeholder=\"\" value=\"\" type=\"search\" name=\"s\" required  style=\"border-width: 1px\"/><button aria-label=\"Search\" class=\"wp-block-search__button has-icon wp-element-button\" type=\"submit\"  style=\"border-width: 1px\"><svg class=\"search-icon\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\">\n					<path d=\"M13 5c-3.3 0-6 2.7-6 6 0 1.4.5 2.7 1.3 3.7l-3.8 3.8 1.1 1.1 3.8-3.8c1 .8 2.3 1.3 3.7 1.3 3.3 0 6-2.7 6-6S16.3 5 13 5zm0 10.5c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2 4.5-4.5 4.5z\"></path>\n				</svg></button></div></form></div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-nowrap is-layout-flex wp-container-157 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-156 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Social</p>\n\n\n\n<div class=\"wp-block-group has-small-font-size is-vertical is-content-justification-left is-layout-flex wp-container-155 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-160 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:88:\"Footer with search field and site title on the left, and small credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:65:\"core/group,core/paragraph,core/search,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3254:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\",\"top\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|50\"}},\"color\":{\"background\":\"#00000008\"}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#00000008;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|60\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"constrained\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Search</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"width\":100,\"widthUnit\":\"%\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"style\":{\"border\":{\"width\":\"1px\"}}} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":[]},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontSize\":\"0.9rem\",\"letterSpacing\":\"1px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}}} -->\n<p class=\"has-text-align-left\" style=\"font-size:0.9rem;font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase\">Social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group has-small-font-size\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"48px\"} -->\n<div style=\"height:48px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:27;O:8:\"stdClass\":7:{s:2:\"id\";i:229131;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with site title and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:840:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-163 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with site title on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/paragraph,core/site-title\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1095:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:28;O:8:\"stdClass\":7:{s:2:\"id\";i:229135;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with navigation and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3733:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-constrained wp-block-group-is-layout-constrained\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-168 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-flex wp-block-group-is-layout-flex\"><nav class=\"has-small-font-size is-responsive items-justified-left is-fallback wp-block-navigation has-small-font-size is-content-justification-left is-layout-flex wp-container-166 wp-block-navigation-is-layout-flex\" aria-label=\"\" \n			data-wp-interactive\n			data-wp-context=\'{ \"core\": { \"navigation\": { \"overlayOpenedBy\": {}, \"type\": \"overlay\", \"roleAttribute\": \"\" } } }\'\n		><button aria-haspopup=\"true\" aria-label=\"Open menu\" class=\"wp-block-navigation__responsive-container-open \" data-micromodal-trigger=\"modal-165\" \n			data-wp-on--click=\"actions.core.navigation.openMenuOnClick\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n		><svg width=\"24\" height=\"24\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" aria-hidden=\"true\" focusable=\"false\"><rect x=\"4\" y=\"7.5\" width=\"16\" height=\"1.5\" /><rect x=\"4\" y=\"15\" width=\"16\" height=\"1.5\" /></svg></button>\n			<div class=\"wp-block-navigation__responsive-container  \" style=\"\" id=\"modal-165\" \n			data-wp-class--has-modal-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-class--is-menu-open=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-effect=\"effects.core.navigation.initMenu\"\n			data-wp-on--keydown=\"actions.core.navigation.handleMenuKeydown\"\n			data-wp-on--focusout=\"actions.core.navigation.handleMenuFocusout\"\n			tabindex=\"-1\"\n		>\n				<div class=\"wp-block-navigation__responsive-close\" tabindex=\"-1\" data-micromodal-close>\n					<div aria-modal=\"\" role=\"\" class=\"wp-block-navigation__responsive-dialog\" aria-label=\"Menu\" \n			data-wp-bind--aria-modal=\"selectors.core.navigation.isMenuOpen\"\n			data-wp-bind--role=\"selectors.core.navigation.roleAttribute\"\n			data-wp-effect=\"effects.core.navigation.focusFirstElement\"\n		>\n							<button aria-label=\"Close menu\" data-micromodal-close class=\"wp-block-navigation__responsive-container-close\" \n			data-wp-on--click=\"actions.core.navigation.closeMenuOnClick\"\n		><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z\"></path></svg></button>\n						<div class=\"wp-block-navigation__responsive-container-content\" id=\"modal-165-content\">\n							<ul class=\"wp-block-navigation__container has-small-font-size is-responsive items-justified-left is-fallback wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul>\n						</div>\n					</div>\n				</div>\n			</div></nav></div>\n\n\n\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with navigation on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/navigation,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1174:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|40\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"left\"},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:29;O:8:\"stdClass\":7:{s:2:\"id\";i:229139;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:56:\"Fullwidth footer with background color and three columns\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2963:\"\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-8d0170a0199cafe7fbcba6c0b4dac464 is-vertical is-content-justification-stretch is-layout-flex wp-container-178 wp-block-group-is-layout-flex\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-columns alignwide has-small-font-size is-layout-flex wp-container-176 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Location</p>\n\n\n\n<p class=\"has-text-align-center\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-center is-vertical no-wrap is-fallback wp-block-navigation has-small-font-size is-content-justification-center is-nowrap is-layout-flex wp-container-172 wp-block-navigation-is-layout-flex\" aria-label=\"\"><ul class=\"wp-block-navigation__container has-small-font-size items-justified-center is-vertical no-wrap is-fallback wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-center\">Follow us</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-center is-layout-flex wp-container-174 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group alignwide is-content-justification-center is-layout-flex wp-container-177 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:57:\"Text-only footer with background color and three columns.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:78:\"core/column,core/columns,core/group,core/navigation,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:3225:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|60\",\"right\":\"var:preset|spacing|40\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|40\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"blockGap\":\"var:preset|spacing|30\"},\"dimensions\":{\"minHeight\":\"40vh\"}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"className\":\"has-background-color\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"stretch\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-background-color has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--40)\"><!-- wp:columns {\"align\":\"wide\",\"fontSize\":\"small\"} -->\n<div class=\"wp-block-columns alignwide has-small-font-size\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Location</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Follow us</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"wide\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\"}} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:30;O:8:\"stdClass\":7:{s:2:\"id\";i:229143;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4120:\"\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color is-vertical is-content-justification-center is-layout-flex wp-container-180 wp-block-group-is-layout-flex\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><div style=\"margin-bottom:6px;\" class=\"is-default-size aligncenter wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Site logo\"></span></div>\n\n\n<p class=\"has-text-align-center has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size is-style-logos-only is-nowrap is-layout-flex wp-container-179 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-facebook  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Facebook</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-twitter  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-wordpress  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12.158,12.786L9.46,20.625c0.806,0.237,1.657,0.366,2.54,0.366c1.047,0,2.051-0.181,2.986-0.51 c-0.024-0.038-0.046-0.079-0.065-0.124L12.158,12.786z M3.009,12c0,3.559,2.068,6.634,5.067,8.092L3.788,8.341 C3.289,9.459,3.009,10.696,3.009,12z M18.069,11.546c0-1.112-0.399-1.881-0.741-2.48c-0.456-0.741-0.883-1.368-0.883-2.109 c0-0.826,0.627-1.596,1.51-1.596c0.04,0,0.078,0.005,0.116,0.007C16.472,3.904,14.34,3.009,12,3.009 c-3.141,0-5.904,1.612-7.512,4.052c0.211,0.007,0.41,0.011,0.579,0.011c0.94,0,2.396-0.114,2.396-0.114 C7.947,6.93,8.004,7.642,7.52,7.699c0,0-0.487,0.057-1.029,0.085l3.274,9.739l1.968-5.901l-1.401-3.838 C9.848,7.756,9.389,7.699,9.389,7.699C8.904,7.67,8.961,6.93,9.446,6.958c0,0,1.484,0.114,2.368,0.114 c0.94,0,2.397-0.114,2.397-0.114c0.485-0.028,0.542,0.684,0.057,0.741c0,0-0.488,0.057-1.029,0.085l3.249,9.665l0.897-2.996 C17.841,13.284,18.069,12.316,18.069,11.546z M19.889,7.686c0.039,0.286,0.06,0.593,0.06,0.924c0,0.912-0.171,1.938-0.684,3.22 l-2.746,7.94c2.673-1.558,4.47-4.454,4.47-7.771C20.991,10.436,20.591,8.967,19.889,7.686z M12,22C6.486,22,2,17.514,2,12 C2,6.486,6.486,2,12,2c5.514,0,10,4.486,10,10C22,17.514,17.514,22,12,22z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">WordPress</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:71:\"Footer with centered site title, tagline, social links and credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.2\";s:25:\"wpop_contains_block_types\";s:75:\"core/group,core/paragraph,core/site-logo,core/social-link,core/social-links\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1532:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"var:preset|spacing|50\",\"bottom\":\"var:preset|spacing|60\",\"left\":\"var:preset|spacing|50\",\"top\":\"var:preset|spacing|60\"},\"blockGap\":\"var:preset|spacing|40\",\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}},\"dimensions\":{\"minHeight\":\"40vh\"}},\"textColor\":\"contrast\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\",\"verticalAlignment\":\"center\"}} -->\n<div class=\"wp-block-group alignfull has-contrast-color has-text-color\" style=\"min-height:40vh;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)\"><!-- wp:site-logo {\"align\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"6px\"}}}} /-->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"medium\"} -->\n<p class=\"has-text-align-center has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"12px\",\"left\":\"12px\"}}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"wordpress\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:31;O:8:\"stdClass\":7:{s:2:\"id\";i:229147;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:52:\"Fullwidth footer with navigation, credit, and social\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4597:\"\n<div class=\"wp-block-group alignfull has-background-color is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group alignfull has-small-font-size is-content-justification-space-between is-nowrap is-layout-flex wp-container-186 wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-small-font-size wp-container-content-181\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n\n<div class=\"wp-block-group wp-container-content-182 is-vertical is-content-justification-center is-layout-flex wp-container-183 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only wp-container-content-184 is-content-justification-right is-nowrap is-layout-flex wp-container-185 wp-block-social-links-is-layout-flex\"><li class=\"wp-social-link wp-social-link-twitter  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-instagram  wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li></ul>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:87:\"Footer with site title on the left, credit in the middle and social links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:76:\"core/group,core/paragraph,core/site-title,core/social-link,core/social-links\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1869:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"},\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"className\":\"has-background-color\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background-color\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"flexWrap\":\"nowrap\"},\"fontSize\":\"small\"} -->\n<div class=\"wp-block-group alignfull has-small-font-size\"><!-- wp:site-title {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"25%\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\"> Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:social-links {\"size\":\"has-small-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"12px\"}},\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"25%\"}},\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:32;O:8:\"stdClass\":7:{s:2:\"id\";i:229151;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:19:\"Left-aligned footer\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2835:\"\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-196 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\">\n<div class=\"wp-block-group wp-container-content-188 is-vertical is-layout-flex wp-container-189 wp-block-group-is-layout-flex\"><h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n\n<p class=\"has-text-align-left\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-content-justification-right is-layout-flex wp-container-195 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-192 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\">Pages</p>\n\n\n<nav class=\"has-small-font-size items-justified-left is-vertical no-wrap is-fallback wp-block-navigation has-small-font-size is-content-justification-left is-nowrap is-layout-flex wp-container-191 wp-block-navigation-is-layout-flex\" aria-label=\"\"><ul class=\"wp-block-navigation__container has-small-font-size items-justified-left is-vertical no-wrap is-fallback wp-block-navigation has-small-font-size\"><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Home</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">About</span></a></li><li class=\"has-small-font-size wp-block-navigation-item wp-block-navigation-link\"><a class=\"wp-block-navigation-item__content\"  href=\"#\"><span class=\"wp-block-navigation-item__label\">Contact</span></a></li></ul></nav>\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\n\n\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-194 wp-block-group-is-layout-flex\">\n<p class=\"has-text-align-left\">Social</p>\n\n\n\n<div class=\"wp-block-group is-vertical is-content-justification-left is-layout-flex wp-container-193 wp-block-group-is-layout-flex\">\n<p><a href=\"#\">Facebook</a></p>\n\n\n\n<p><a href=\"#\">Instagram</a></p>\n\n\n\n<p><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:44:\"Left-aligned footer with just a credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:25:\"core/template-part/footer\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:69:\"core/group,core/navigation,core/paragraph,core/site-title,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2939:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|50\",\"right\":\"var:preset|spacing|30\",\"bottom\":\"var:preset|spacing|50\",\"left\":\"var:preset|spacing|30\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--30)\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fill\",\"flexSize\":null}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"medium\"} /-->\n\n<!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">2020 Lomita Blvd,&nbsp;<br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-left has-small-font-size\">Proudly powered by <a rel=\"nofollow\" href=\"https://wordpress.org\">WordPress</a> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|50\"}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"wrap\",\"justifyContent\":\"right\",\"verticalAlignment\":\"top\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Pages</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"overlayMenu\":\"never\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\",\"flexWrap\":\"nowrap\"},\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"fontSize\":\"small\"} /-->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Social</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"8px\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Instagram</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"24px\"} -->\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:33;O:8:\"stdClass\":7:{s:2:\"id\";i:201;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Three columns with offset images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1330:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-200 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:25%\">\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:45%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n\n\n\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:33:\"Three columns with offset images.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:47:\"core/column,core/columns,core/image,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"gallery\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1753:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:spacer {\"height\":500} -->\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":150} -->\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"45%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":285} -->\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:34;O:8:\"stdClass\":7:{s:2:\"id\";i:200;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Three columns of text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1078:\"\n<div class=\"wp-block-columns alignfull has-text-color has-background is-layout-flex wp-container-204 wp-block-columns-is-layout-flex\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n\n\n\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n\n\n\n<p>Stay updated and see our current exhibitions here.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n\n\n\n<p>Get to know our opening times, ticket prices and discounts.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:22:\"Three columns of text.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1496:\"<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:35;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3496:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-205 wp-block-group-is-layout-flex\" style=\"padding-right:0;padding-left:0\">\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n</div>\n\n\n\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-vertical is-nowrap is-layout-flex wp-container-213 wp-block-group-is-layout-flex\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-209 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-212 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:69%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:5:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:7:\"gallery\";i:3;s:6:\"images\";i:4;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:5124:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f5eac1\"},\"spacing\":{\"padding\":{\"top\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\",\"right\":\"6vw\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\" style=\"padding-right:0;padding-left:0\"><!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"16px\"}},\"anchor\":\"ecosystem\"} -->\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"0.9\",\"fontSize\":\"6vw\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"1vw\"} -->\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"3vw\",\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"3vw\",\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"69%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:69%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:36;O:8:\"stdClass\":7:{s:2:\"id\";i:197;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:39:\"Two columns of text with offset heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2240:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f2f0e9\">\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-217 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-221 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n</div>\n</div>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:43:\"Two columns of text with an offset heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:77:\"core/column,core/columns,core/group,core/paragraph,core/separator,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2837:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f2f0e9\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f2f0e9\"><!-- wp:spacer {\"height\":70} -->\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"30px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:separator {\"customColor\":\"#000000\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":40} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:37;O:8:\"stdClass\":7:{s:2:\"id\";i:196;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Media and text in a full height container\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1445:\"\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What&#8217;s the problem?</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n</div>\n</div></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Media and text block with image to the left and text and button to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:79:\"core/button,core/buttons,core/cover,core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2015:\"<!-- wp:cover {\"customOverlayColor\":\"#ffffff\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#ffffff\"></span><div class=\"wp-block-cover__inner-container\"><!-- wp:media-text {\"mediaLink\":\"https://s.w.org/images/core/5.8/soil.jpg\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"imageFill\":true} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"32px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What\'s the problem?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Learn more</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:media-text --></div></div>\n<!-- /wp:cover -->\";}i:38;O:8:\"stdClass\":7:{s:2:\"id\";i:195;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Media and text with image on the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:719:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><div class=\"wp-block-media-text__content\">\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n</div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the right and text to the left.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1155:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaLink\":\"#\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"wp-block-heading has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"17px\"},\"color\":{\"text\":\"#636363\"}}} -->\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n<!-- /wp:paragraph --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:39;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:554:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:40;O:8:\"stdClass\":7:{s:2:\"id\";i:186;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with text and a button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1508:\"\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50% 50%;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-228 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:60%\">\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:62:\"Large header with background image and text and button on top.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:88:\"core/button,core/buttons,core/column,core/columns,core/cover,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"banner\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:2053:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/art-01.jpg\",\"hasParallax\":true,\"dimRatio\":40,\"customOverlayColor\":\"#000000\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-parallax\" style=\"min-height:100vh\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-40 has-background-dim\" style=\"background-color:#000000\"></span><div role=\"img\" class=\"wp-block-cover__image-background has-parallax\" style=\"background-position:50% 50%;background-image:url(https://s.w.org/images/core/5.8/art-01.jpg)\"></div><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.2\"}},\"className\":\"alignwide has-white-color has-text-color\"} -->\n<h2 class=\"wp-block-heading alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"60%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"color\":{\"text\":\"#ffffff\",\"background\":\"#000000\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#ffffff;background-color:#000000\">Visit</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:41;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1321:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-232 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:42;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}i:43;O:8:\"stdClass\":7:{s:2:\"id\";i:27;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Quote\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:688:\"\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n\n\n\n<figure class=\"wp-block-image aligncenter size-large is-resized is-style-rounded\"><img decoding=\"async\" loading=\"lazy\" src=\"https://s.w.org/images/core/5.8/portrait.jpg\" alt=\"A side profile of a woman in a russet-colored turtleneck and white bag. She looks up with her eyes closed.\" width=\"150\" height=\"150\" /></figure>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\">\n<p>&#8220;Contributing makes me feel like I&#8217;m being useful to the planet.&#8221;</p>\n<cite>— Anna Wong, <em>Volunteer</em></cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/quote\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:51:\"core/image,core/paragraph,core/quote,core/separator\";}s:14:\"category_slugs\";a:2:{i:0;s:12:\"testimonials\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1102:\"<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n<!-- /wp:separator -->\n\n<!-- wp:image {\"align\":\"center\",\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-large is-resized is-style-rounded\"><img src=\"https://s.w.org/images/core/5.8/portrait.jpg\" alt=\"A side profile of a woman in a russet-colored turtleneck and white bag. She looks up with her eyes closed.\" width=\"150\" height=\"150\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} -->\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\"><!-- wp:paragraph -->\n<p>\"Contributing makes me feel like I\'m being useful to the planet.\"</p>\n<!-- /wp:paragraph --><cite>— Anna Wong, <em>Volunteer</em></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-default\" />\n<!-- /wp:separator -->\";}i:44;O:8:\"stdClass\":7:{s:2:\"id\";i:29;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Two columns of text and title\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1518:\"\n<h2 class=\"wp-block-heading\" style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-236 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband&#8217;s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:47:\"Two columns of text preceded by a long heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1711:\"<!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":38,\"lineHeight\":\"1.4\"}}} -->\n<h2 style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband\'s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:45;O:8:\"stdClass\":7:{s:2:\"id\";i:19;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:23:\"Two images side by side\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:572:\"\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped wp-block-gallery-237 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" /></figure>\n</figure>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:41:\"An image gallery with two example images.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:23:\"core/gallery,core/image\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:704:\"<!-- wp:gallery {\"linkTo\":\"none\",\"align\":\"wide\"} -->\n<figure class=\"wp-block-gallery alignwide has-nested-images columns-default is-cropped\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" /></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\";}}','no'),(611,'_site_transient_timeout_wp_remote_block_patterns_8b4fc2c6224785bc57d976c11baeaeb5','1694787967','no'),(612,'_site_transient_wp_remote_block_patterns_8b4fc2c6224785bc57d976c11baeaeb5','a:14:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:207567;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:11:\"Link in Bio\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6630:\"\n<div class=\"wp-block-group has-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"has-text-align-center wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"has-text-align-center wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color is-content-justification-center is-layout-flex wp-container-2 wp-block-social-links-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-instagram has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-bandcamp has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M15.27 17.289 3 17.289 8.73 6.711 21 6.711 15.27 17.289\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Bandcamp</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-twitter has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-twitch has-black-color has-white-background-color wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M16.499,8.089h-1.636v4.91h1.636V8.089z M12,8.089h-1.637v4.91H12V8.089z M4.228,3.178L3,6.451v13.092h4.499V22h2.456 l2.454-2.456h3.681L21,14.636V3.178H4.228z M19.364,13.816l-2.864,2.865H12l-2.453,2.453V16.68H5.863V4.814h13.501V13.816z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitch</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";s:25:\"wpop_contains_block_types\";s:116:\"core/button,core/buttons,core/group,core/site-tagline,core/site-title,core/social-link,core/social-links,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2665:\"<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|80\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|80\",\"left\":\"0\"}}},\"backgroundColor\":\"white\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group has-white-background-color has-background\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><!-- wp:site-title {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"textAlign\":\"center\"} /-->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:social-links {\"iconColor\":\"black\",\"iconColorValue\":\"#000000\",\"iconBackgroundColor\":\"white\",\"iconBackgroundColorValue\":\"#ffffff\",\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|60\",\"bottom\":\"var:preset|spacing|60\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"bandcamp\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitch\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:732;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Simple call to action\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:961:\"\n<div class=\"wp-block-group alignfull has-text-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#ffffff;color:#000000\">\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n\n\n\n<h2 class=\"has-text-align-center wp-block-heading\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-4 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n</div>\n\n\n\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:89:\"A container with a white background. Inside is a centered paragraph, heading, and button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/group,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"buttons\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1506:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-group alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"lineHeight\":\".9\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":59,\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"has-text-align-center\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50,\"style\":{\"color\":{\"background\":\"#000000\",\"text\":\"#ffffff\"},\"border\":{\"radius\":\"50px\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:678;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Three column pricing table\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3717:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-12 wp-block-columns-is-layout-flex\" style=\"margin-bottom:0\">\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-2ae1b943d87d6b5cbc827b8e7de5c343 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n\n\n\n<ul class=\"has-normal-font-size\">\n<li>General admission and member discounts for one adult</li>\n\n\n\n<li>One free ticket per special exhibition</li>\n\n\n\n<li>Two single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-6 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-c860b6260b3b3b7bae640a65db9c9aec is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Four free tickets per special exhibition</li>\n\n\n\n<li>Four single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-8 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column has-text-color has-background has-link-color wp-elements-4a86cd4fa1de9230a73a90c7ad305893 is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\">\n<li>General admission and member discounts for two adults</li>\n\n\n\n<li>Five free tickets per special exhibition</li>\n\n\n\n<li>Six single-use guest passes per year</li>\n</ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-10 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:272:\"Three equal-width columns set up as a pricing table. The left column has a yellow background, the middle column has a light purple background, and the right column has a light blue background. Each column contains a heading, subheading, separator, list, and then a button.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:117:\"core/button,core/buttons,core/column,core/columns,core/heading,core/list,core/list-item,core/paragraph,core/separator\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:6125:\"<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"0\"}}}} -->\n<div class=\"wp-block-columns alignwide\" style=\"margin-bottom:0\"><!-- wp:column {\"style\":{\"color\":{\"background\":\"#ffe97d\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#ffe97d;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"single\"} -->\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"style\":{\"color\":{\"background\":\"#000000\"}},\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-css-opacity has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for one adult</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>One free ticket per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Two single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$110 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#d1d1e1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#d1d1e1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"family\"} -->\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Four single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$200 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#c0ebf1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"color:#000000;background-color:#c0ebf1;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}},\"anchor\":\"patron\"} -->\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"opacity\":\"css\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><!-- wp:list-item -->\n<li>General admission and member discounts for two adults</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Five free tickets per special exhibition</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Six single-use guest passes per year</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius wp-element-button\" style=\"background-color:#000000\">$400 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:669;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Image and quote on a background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2281:\"\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-1-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-1-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-1-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-1.png 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">– Terry a O&#8217;Neal</p>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-half-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-half-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-half-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-half.png 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">– Molière</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:221:\"Two media and text blocks. The top one has a pale green background. The text is on the left and contains a quote, and the image is on the right. The next block underneath has the image on the left, and quote on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:41:\"core/group,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2404:\"<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":5263,\"mediaLink\":\"https://wordpress.org/patterns/pattern/image-and-quote-on-a-background/pear-3/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#f1f5c7\"}}} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Terry a O\'Neal</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:media-text {\"mediaId\":673,\"mediaLink\":\"https://wordpress.org/patterns/pear-half/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#fffdea\"}}} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Molière</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:591;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Event\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1687:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color wp-elements-5fce4e677a9b9d7d0cae0196c9d74d97\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group has-link-color wp-elements-71b4a847bbd96313422a1303e9ba41f3 is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n\n\n\n<p class=\"has-text-color has-link-color wp-elements-0860918d5b16b9e1778b1966b333b980\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n</div>\n</div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1536x1536.jpg 1536w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1.jpg 1572w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:54:\"core/group,core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1617:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaId\":590,\"mediaLink\":\"https://wordpress.org/patterns/image-from-rawpixel-id-430289-jpeg-1/\",\"mediaType\":\"image\",\"mediaWidth\":60,\"verticalAlignment\":\"top\",\"style\":{\"color\":{\"background\":\"#121c1c\",\"text\":\"#fffdc7\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color\" style=\"color:#fffdc7;background-color:#121c1c;grid-template-columns:auto 60%\"><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-group has-link-color\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontWeight\":\"700\",\"fontSize\":\"48px\",\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}},\"color\":{\"text\":\"#fffdc7\"}}} -->\n<p class=\"has-text-color has-link-color\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" /></figure></div>\n<!-- /wp:media-text -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:573;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Image on solid color with description\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1830:\"\n<div class=\"wp-block-columns alignfull is-layout-flex wp-container-21 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img decoding=\"async\" loading=\"lazy\" width=\"263\" height=\"300\" src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" srcset=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg 263w, https://s.w.org/patterns/files/2021/06/wire-sculpture-898x1024.jpg 898w, https://s.w.org/patterns/files/2021/06/wire-sculpture-768x875.jpg 768w, https://s.w.org/patterns/files/2021/06/wire-sculpture-1347x1536.jpg 1347w, https://s.w.org/patterns/files/2021/06/wire-sculpture.jpg 1658w\" sizes=\"(max-width: 263px) 100vw, 263px\" /></figure></div>\n</div></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\">\n<div class=\"wp-block-columns is-layout-flex wp-container-19 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:320px\">\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n\n\n\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:38:\"Image on solid color with description.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:61:\"core/column,core/columns,core/cover,core/image,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1826:\"<!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:cover {\"customOverlayColor\":\"#f6f6f6\",\"minHeight\":600} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"center\",\"id\":571,\"sizeSlug\":\"medium\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" /></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"1em\",\"right\":\"1em\",\"bottom\":\"1em\",\"left\":\"1em\"}}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"320px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:320px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:526;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Offset images with descriptions\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2907:\"\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top is-layout-flex wp-container-31 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-24 is-vertical is-content-justification-left is-nowrap is-layout-flex wp-container-25 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<figure class=\"wp-block-image size-large wp-container-content-22\"><img decoding=\"async\" loading=\"lazy\" width=\"793\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"Beautiful photomechanical prints of White Irises (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-525\" srcset=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg 793w, https://s.w.org/patterns/files/2021/06/Iris-232x300.jpg 232w, https://s.w.org/patterns/files/2021/06/Iris-768x992.jpg 768w, https://s.w.org/patterns/files/2021/06/Iris-1189x1536.jpg 1189w, https://s.w.org/patterns/files/2021/06/Iris-1586x2048.jpg 1586w, https://s.w.org/patterns/files/2021/06/Iris.jpg 1920w\" sizes=\"(max-width: 793px) 100vw, 793px\" /></figure>\n\n\n\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-23 wp-block-group-is-layout-flex\">\n<p class=\"has-medium-font-size\"><strong>White Irises</strong></p>\n\n\n\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group wp-container-content-28 is-vertical is-layout-flex wp-container-29 wp-block-group-is-layout-flex\" style=\"margin-top:0;margin-bottom:0\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-27 wp-block-group-is-layout-flex\">\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Cherry Blossom</strong></p>\n\n\n\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n</div>\n\n\n\n<figure class=\"wp-block-image size-large\" style=\"font-size:14px\"><img decoding=\"async\" loading=\"lazy\" width=\"707\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"Beautiful photomechanical prints of Cherry Blossom (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-524\" srcset=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg 707w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-207x300.jpg 207w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-768x1112.jpg 768w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1061x1536.jpg 1061w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1414x2048.jpg 1414w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-scaled.jpg 1768w\" sizes=\"(max-width: 707px) 100vw, 707px\" /></figure>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:58:\"Two offset columns with images and titles within each one.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:73:\"core/column,core/columns,core/group,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:7:\"gallery\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:2930:\"<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"var:preset|spacing|40\",\"left\":\"var:preset|spacing|40\"}}}} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"480px\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"left\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:image {\"id\":525,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"50%\"}}} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"Beautiful photomechanical prints of White Irises (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-525\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>White Irises</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:group {\"style\":{\"layout\":{\"selfStretch\":\"fixed\",\"flexSize\":\"480px\"},\"spacing\":{\"margin\":{\"top\":\"0\",\"bottom\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\" style=\"margin-top:0;margin-bottom:0\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"0\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:spacer {\"height\":\"80px\"} -->\n<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\"><strong>Cherry Blossom</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"id\":524,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<figure class=\"wp-block-image size-large\" style=\"font-size:14px\"><img src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"Beautiful photomechanical prints of Cherry Blossom (1887-1897) by Ogawa Kazumasa. Original from The Rijksmuseum. \" class=\"wp-image-524\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:521;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Image with description below and to the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1665:\"\n<div class=\"wp-block-columns is-layout-flex wp-container-36 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:10%\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1.jpg 1510w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:10%\"></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-39 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n</div>\n</div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:46:\"Image with description below and to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:50:\"core/column,core/columns,core/image,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1241:\"<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":522,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:502;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Event details\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1684:\"\n<figure class=\"wp-block-image alignwide size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"2560\" height=\"1227\" src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" srcset=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg 2560w, https://s.w.org/patterns/files/2021/06/Group-17-300x144.jpg 300w, https://s.w.org/patterns/files/2021/06/Group-17-1024x491.jpg 1024w, https://s.w.org/patterns/files/2021/06/Group-17-768x368.jpg 768w, https://s.w.org/patterns/files/2021/06/Group-17-1536x736.jpg 1536w, https://s.w.org/patterns/files/2021/06/Group-17-2048x981.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" /></figure>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-44 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#efefef;background-color:#262626\">Purchase Tickets</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:14:\"Event details.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/button,core/buttons,core/column,core/columns,core/image,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:14:\"call-to-action\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:8:\"featured\";}s:15:\"pattern_content\";s:1642:\"<!-- wp:image {\"align\":\"wide\",\"id\":501,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image alignwide size-full\"><img src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"style\":{\"color\":{\"background\":\"#262626\",\"text\":\"#efefef\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" style=\"color:#efefef;background-color:#262626\">Purchase Tickets</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:200;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Three columns of text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1077:\"\n<div class=\"wp-block-columns alignfull has-text-color has-background is-layout-flex wp-container-48 wp-block-columns-is-layout-flex\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n\n\n\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n\n\n\n<p>Stay updated and see our current exhibitions here.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n\n\n\n<p>Get to know our opening times, ticket prices and discounts.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:22:\"Three columns of text.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:52:\"core/column,core/columns,core/heading,core/paragraph\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1496:\"<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3492:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\">\n<div class=\"wp-block-group is-vertical is-nowrap is-layout-flex wp-container-49 wp-block-group-is-layout-flex\" style=\"padding-right:0;padding-left:0\">\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n</div>\n\n\n\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group alignwide is-vertical is-nowrap is-layout-flex wp-container-57 wp-block-group-is-layout-flex\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-53 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-56 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:69%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:86:\"core/column,core/columns,core/group,core/heading,core/image,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:5:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:7:\"gallery\";i:3;s:6:\"images\";i:4;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:5124:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f5eac1\"},\"spacing\":{\"padding\":{\"top\":\"6vw\",\"bottom\":\"6vw\",\"left\":\"6vw\",\"right\":\"6vw\"}}},\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"16px\",\"padding\":{\"right\":\"0\",\"left\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\" style=\"padding-right:0;padding-left:0\"><!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"16px\"}},\"anchor\":\"ecosystem\"} -->\n<h6 class=\"wp-block-heading has-text-color\" id=\"ecosystem\" style=\"color:#000000;font-size:16px\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"0.9\",\"fontSize\":\"6vw\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"textTransform\":\"none\",\"textDecoration\":\"none\",\"letterSpacing\":\"0px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none\">Positive growth.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"1vw\"} -->\n<div style=\"height:1vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":\"3vw\",\"padding\":{\"top\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"right\":\"0\"}}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0\"><!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"3vw\",\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\",\"style\":{\"spacing\":{\"blockGap\":{\"left\":\"3vw\"}}}} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"69%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:69%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:spacer {\"height\":\"2vw\"} -->\n<div style=\"height:2vw\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"},\"typography\":{\"fontSize\":\"17px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:554:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:43:\"core/heading,core/media-text,core/paragraph\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:844:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"wp-block-heading has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1320:\"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-61 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:75:\"core/column,core/columns,core/cover,core/heading,core/paragraph,core/spacer\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"banner\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:1698:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull\" style=\"min-height:800px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-60 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"wp-block-heading alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":\"330px\"} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":7:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";s:25:\"wpop_contains_block_types\";s:12:\"core/heading\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:2:{i:0;s:4:\"core\";i:1;s:8:\"featured\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}}','no'),(617,'_site_transient_timeout_browser_27b0fe621923ed3c1cf4b41dd4c034b3','1695571834','no'),(618,'_site_transient_browser_27b0fe621923ed3c1cf4b41dd4c034b3','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"116.0.0.0\";s:8:\"platform\";s:0:\"\";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'),(619,'_site_transient_timeout_php_check_2f5acf219326a8bc5331ee302b9812f4','1695571835','no'),(620,'_site_transient_php_check_2f5acf219326a8bc5331ee302b9812f4','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(621,'_transient_timeout_elementor_remote_info_api_data_3.16.3','1695010238','no'),(622,'_transient_elementor_remote_info_api_data_3.16.3','a:4:{s:9:\"timestamp\";s:10:\"1694966396\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{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:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";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:5:\"6.3.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(623,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1695010266','no');
INSERT INTO `wp_options` VALUES (624,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Sep 2023 18:25:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.4-alpha-56594\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Openverse Wins the 2023 OEG Open Infrastructure Award\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wordpress.org/news/2023/09/openverse-wins-the-2023-oeg-open-infrastructure-award/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Sep 2023 18:04:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:6:\"Awards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"award\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15967\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:403:\"WordPress is excited to announce that Openverse has been awarded the 2023 Open Education Award for Excellence in the Open Infrastructure category! The Open Education Awards for Excellence, organized by the non-profit organization Open Education Global (OEG), celebrate people, resources, and initiatives that have significantly contributed to the open education field and community. This year, [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Madison Swain-Bowden\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3017:\"\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" fetchpriority=\"high\" width=\"1800\" height=\"1013\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/09/openverse-image.png?resize=1800%2C1013&#038;ssl=1\" alt=\"\" class=\"wp-image-15959\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/09/openverse-image.png?w=1800&amp;ssl=1 1800w, https://i0.wp.com/wordpress.org/news/files/2023/09/openverse-image.png?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/09/openverse-image.png?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/09/openverse-image.png?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/09/openverse-image.png?resize=1536%2C864&amp;ssl=1 1536w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>WordPress is excited to announce that <a href=\"https://openverse.org/\">Openverse</a> has been awarded the <a href=\"https://awards.oeglobal.org/awards/2023/open-infrastructure/openverse/\"><strong>2023 Open Education Award for Excellence</strong></a> in the <strong>Open Infrastructure</strong> category!</p>\n\n\n\n<p>The Open Education Awards for Excellence, organized by the non-profit organization <a href=\"https://www.oeglobal.org/\">Open Education Global (OEG)</a>, celebrate people, resources, and initiatives that have significantly contributed to the open education field and community. This year, they received 172 nominations across 16 award categories, representing individuals and projects from 38 countries.</p>\n\n\n\n<p>This award honors Openverse&#8217;s work to make it easy for everyone to discover and use open educational resources. The award reviewers were particularly impressed by <strong>Openverse&#8217;s <a href=\"https://twitter.com/WordPress/status/1514349743144685577\">one-click attribution feature</a></strong>. Moreover, they highlighted the tool’s ability to filter searches by source collections and other parameters, such as image orientation and specific license, which they noted “provides seekers of open content important affordances to find clearly licensed media they can reuse.”&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><em>“This is an exceptional search engine for the open education community. The one click attribution copy for images makes attribution very straight-forward and easy, even for novice users. The design is excellent; the results are returned fast.”</em> </p>\n<cite>Award reviewer for the 2023 OEG Award for Open Infrastructure </cite></blockquote>\n\n\n\n<p>This recognition not only underscores Openverse and WordPress&#8217;s commitment to open content but also celebrates the work of their dedicated contributors, community, and partners in advancing open education and creative works.</p>\n\n\n\n<p><a href=\"https://awards.oeglobal.org/awards/2023/open-infrastructure/openverse/\">Learn more about this Openverse award on the OEG page</a>.</p>\n\n\n\n<p><strong>Congratulations, Openverse!</strong></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15967\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"The Month in WordPress – August 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2023/09/the-month-in-wordpress-august-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Sep 2023 10:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15933\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:410:\"August 2023 marked another exciting chapter in WordPress, with the Community Summit and WordCamp US bringing the community together for meaningful discussions, knowledge sharing, and learning. This month also welcomed the long-awaited WordPress 6.3 release and offered a glimpse of what&#8217;s to come. Let&#8217;s dive into it. Meet WordPress 6.3 “Lionel” WordPress 6.3 &#8220;Lionel&#8221; was [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:13875:\"\n<p>August 2023 marked another exciting chapter in WordPress, with the Community Summit and WordCamp US bringing the community together for meaningful discussions, knowledge sharing, and learning. This month also welcomed the long-awaited WordPress 6.3 release and offered a glimpse of what&#8217;s to come. Let&#8217;s dive into it.</p>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Meet WordPress 6.3 “Lionel”</h2>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/08/lionel/\"><strong>WordPress 6.3 &#8220;Lionel&#8221;</strong></a> was released on August 8, 2023, and named after the acclaimed vibraphonist, pianist, and jazz percussionist Lionel Hampton.</p>\n\n\n\n<p><strong>This major update makes bringing your vision to life with blocks more intuitive and efficient.</strong> Your content, templates, and patterns are now seamlessly integrated into the Site Editor, enabling you to craft every aspect of your online presence within a single location. You can sharpen your designs with new tools, enjoy fine-tuned control over navigation menus, and work faster with the Command Palette. <a href=\"https://wordpress.org/download/releases/6-3/\">Explore what&#8217;s new</a>.</p>\n\n\n\n<p>WordPress 6.3 features over 500 features and enhancements with a continued emphasis on <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">performance</a> and accessibility. This release was made possible by more than 650 contributors from 52 countries.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/6JhJcOLySLY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>While the Site Editor will continue to be enhanced, this release means a significant milestone as <strong>it marks the conclusion of Gutenberg Phase 2</strong>. Take a moment to watch “<a href=\"https://www.youtube.com/watch?v=FcTLMTyD2DU\">Designed with WordPress</a>”—an ode to this remarkable journey worth celebrating.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 6.3.1</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Roadmap to 6.4</h2>\n\n\n\n<p>Contributors are already working on WordPress 6.4, expected to be released on<strong> November 7, 2023</strong>. This release, led by an <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">underrepresented gender release squad</a>, will focus on enhancing different aspects of the WordPress experience while continuing the foundational work for Gutenberg Phase 3. Users can anticipate features like font management and a new default theme, Twenty Twenty-Four.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\"><strong>Twenty Twenty-Four</strong></a> aims to be a versatile theme, featuring a range of templates and patterns specifically designed for three use cases: entrepreneurs and small businesses, photographers and artists, and writers and bloggers.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/08/22/roadmap-to-6-4/\">Check out the 6.4 roadmap post</a> for a tentative preview of expected features.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Two new versions of Gutenberg shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/10/whats-new-in-gutenberg-16-4-9-august/\"><strong>Gutenberg 16.4</strong></a> was released on August 9, 2023. It introduced a new “auto-inserting blocks” experimental feature, a progress bar component that can be used throughout the interface, and block supports for the Footnotes block.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/23/whats-new-in-gutenberg-16-5-23-august/\"><strong>Gutenberg 16.5</strong></a><strong> </strong>shipped on August 23, 2023, and focused on enhancements to the Command Palette and enabling further customization of blocks.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a>Follow the “<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s new in Gutenberg</a>” posts to stay on top of the latest enhancements.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Next generation of WordPress events, WP Admin redesign, and more</h2>\n\n\n\n<ul>\n<li>The Community team has been busy ushering in the next generation of WordPress events. <a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Four pilot events were successfully held</a> in July and August, with another five planned before the end of the year.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff post</a> elaborates on the concepts explored so far to revitalize the WordPress admin experience.</li>\n\n\n\n<li>In response to <a href=\"https://www.european-cyber-resilience-act.com/\">Europe&#8217;s Cyber Resilience Act</a> (CRA), leaders from Drupal, Joomla!, TYPO3, and WordPress <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">co-authored an open letter</a> addressing concerns about the current CRA definitions and terms and the implications for open source projects.</li>\n\n\n\n<li><a href=\"https://wordpress.org/blocks/\">Check out WordPress.org/blocks</a>—A <a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\" data-type=\"link\" data-id=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">new page</a> that explores the power of blocks within WordPress and as a broader framework.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/21/wordpresscs-3-0-0-is-now-available/\">WordPressCS 3.0.0 is now available</a>. This update to the WordPress Coding Standards introduces improvements in accuracy, performance, stability, and compatibility with modern PHP versions.</li>\n\n\n\n<li>The first cohort of the WordPress Contributor Mentorship Program, which aims to help new contributors onboard to Make teams, <a href=\"https://make.wordpress.org/project/2023/08/11/the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program-has-concluded/\">successfully concluded</a> last month.</li>\n\n\n\n<li><a href=\"https://wordpress.org/remembers/\">WordPress Remembers</a> went live in August to honor contributors who left a lasting impact on the project and have since passed away.</li>\n\n\n\n<li>Core team members proposed to <a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">sync Gutenberg code with core earlier in the release cycle</a> to streamline the integration of new features and reduce risks and delays in major release milestones.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/08/11/blue-note-the-second-community-theme-is-released/\">Blue Note</a>, the second block theme born from the Community Themes initiative, is live on the Theme Directory.</li>\n\n\n\n<li>Every month, the Training team works to expand the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> catalog with new courses, tutorials, online workshops, and more. <a href=\"https://make.wordpress.org/updates/2023/09/02/whats-new-on-learn-wordpress-in-august-2023/\">See what’s new</a>.</li>\n\n\n\n<li>Openverse maintainers met in Copenhagen for an exciting exchange with Statens Museum for Kunst (SMK), Denmark’s largest art museum. <a href=\"https://make.wordpress.org/openverse/2023/08/17/cultivating-collaborative-pathways-with-statens-museum-for-kunst-smk/\">Learn about their discussions and collaboration efforts</a> to advance openly licensed works.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Keen to see new WordPress event formats happening in your local community? <a href=\"https://make.wordpress.org/community/2023/08/30/the-nextgen-event-project-your-ideas-your-wordpress-community/\">Get inspired by these creative concepts</a> and <a href=\"https://wordpressdotorg.survey.fm/next-generation-of-wordpress-events\">share your ideas</a>!</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>Core team members <a href=\"https://make.wordpress.org/core/2023/08/31/proposal-an-update-to-the-field-guide/\">suggested updating the WordPress Field Guide</a> by publishing it earlier in the development cycle and introducing a simplified Field Guide on the WordPress Developer Blog. Feedback is open until September 15, 2023.</li>\n\n\n\n<li>Help test the <a href=\"https://make.wordpress.org/core/2023/09/05/call-for-testing-performant-translations/\">new Performant Translations plugin</a>, which aims to make localized WordPress sites faster.</li>\n\n\n\n<li>A new proposal aims to <a href=\"https://make.wordpress.org/support/2023/08/proposal-for-updated-support-guidelines/\">refine and update WordPress’ support guidelines</a>. You can provide your input by October 1, 2023.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/09/06/mobile-team-update-september-6th-2/\">Version 23.2</a> of the WordPress mobile app for iOS and Android is ready for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Training team seeks feedback on the first learning pathways outlined to improve the Learn WordPress educational experience. <a href=\"https://make.wordpress.org/training/2023/08/24/looking-for-feedback-learning-pathway-outlines/\">Share your thoughts by September 15, 2023</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>On August 22-23, a group of WordPress contributors gathered at the <a href=\"https://communitysummit.wordcamp.org/2023/\"><strong>Community Summit</strong></a> to discuss key topics concerning the project. Read the notes from each session and join the conversations at <a href=\"https://make.wordpress.org/summit/\">make.wordpress.org/summit</a>.</li>\n\n\n\n<li>Following the Summit, Washington, D.C. hosted <a href=\"https://us.wordcamp.org/2023/\"><strong>WordCamp US 2023</strong></a> from August 24-26. This event brought together nearly 2,000 attendees for a Contributor Day and two conference days filled with engaging <a href=\"https://www.youtube.com/playlist?list=PL1pJFUVKQ7EQWcZBkBtb9YQlziKJ7nvpv\">sessions</a>, conversations, and <a href=\"https://twitter.com/WordPress/status/1695145857232904260\">open source art</a>. Saturday’s agenda concluded with keynotes by WordPress co-founder Matt Mullenweg and Executive Director Josepha Haden Chomphosy and a subsequent Q&amp;A session. <a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">Check out the event recap for highlights</a>.</li>\n\n\n\n<li>Join #WPDiversity with a free online <a href=\"https://www.eventbrite.com/e/speaker-workshop-for-indian-women-in-the-wordpress-community-sept-23-24-tickets-633636773647\">speaker workshop for Indian women in the WordPress Community</a>. The event will take place on September 23-24, 2023.</li>\n\n\n\n<li>The WordCamp Asia 2024 organizing team opened calls for <a href=\"https://asia.wordcamp.org/2024/call-for-speakers-is-now-open/\">speakers</a>, <a href=\"https://asia.wordcamp.org/2024/volunteer-registrations-are-open/\">volunteers</a>, <a href=\"https://asia.wordcamp.org/2024/call-for-sponsors/\">sponsors</a>, and <a href=\"https://asia.wordcamp.org/2024/call-for-media-partners-is-now-open/\">media partners</a>.</li>\n\n\n\n<li>Be sure to visit <a href=\"https://central.wordcamp.org/schedule/\">WordCamp Central</a> to find out about upcoming WordCamps.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join Josepha Haden Chomphosy in <a href=\"https://wordpress.org/news/2023/09/episode-61-community-summit-all-at-washington-d-c/\">Episode 61 of WP Briefing</a> as she discusses her takeaways from the Community Summit.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this Month in WordPress: <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15933\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WP Briefing: Episode 61: Community, Summit, all at  Washington D.C.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wordpress.org/news/2023/09/episode-61-community-summit-all-at-washington-d-c/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Sep 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=15911\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:168:\"Join WordPress Executive Director Josepha Haden Chomphosy as she discusses the latest from the Community Summit and her takeaways from the 2023 event in Washington, DC.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:62:\"https://wordpress.org/news/files/2023/09/WP-Briefing-061-1.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:17586:\"\n<p>Join WordPress Executive Director Josepha Haden Chomphosy as she discusses the latest from the Community Summit and her takeaways from the 2023 event in Washington, D.C.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo: <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production: <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li>The 2023 <a href=\"https://communitysummit.wordcamp.org/2023/\">Community Summit</a> in Washington, DC</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/02/episode-49-everything-you-need-to-know-about-the-community-summit/\">WP Briefing Episode 49</a>: Everything You Need to Know About the Community Summit!</li>\n\n\n\n<li><a href=\"https://href.li/?https://make.wordpress.org/community/2023/05/08/the-next-generation-of-wordcamps/\">The Next Generation of WordCamps</a></li>\n\n\n\n<li><a href=\"https://href.li/?https://make.wordpress.org/community/2023/05/24/idea-generation-next-gen-wordcamps/\">Idea generation: Next Gen WordCamps!</a></li>\n\n\n\n<li><a href=\"https://pressnomics.com/\">PressNomics</a></li>\n\n\n\n<li><a href=\"https://loopconf.io/\">LoopConf</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/\">WordPress Community Summit</a></li>\n\n\n\n<li><strong>A small list of big things</strong>\n<ul>\n<li><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/community/2023/08/23/call-for-ideas-new-features-for-our-nexgen-wp-events-central-page/\" target=\"_blank\">Call for ideas: new features for our NexGen WP events central page</a>&nbsp;&#8211; Open call for ideas to find the most desirable features for a future homepage that would host a list of all NextGen WordPress events. </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Introducing Twenty Twenty-Four</a>&nbsp;&#8211; Announced at Contributor Day, this new theme will be part of the 6.4 release. </li>\n\n\n\n<li>With the release of 6.3 behind us,&nbsp;<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/6-4/\" target=\"_blank\">we are working hard on bringing 6.4</a>&nbsp;to the community. You can get involved with the development of this important release. </li>\n\n\n\n<li>A successful WCUS is behind us, and if you missed the event, we have you covered. <a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">Here is a recap of the event</a>.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-15911\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong>&nbsp;Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro Music)&nbsp;</p>\n\n\n\n<p>[00:00:39] <strong>Josepha:</strong>&nbsp;We are back and catching up from our midyear break. And in true WordPress fashion, we&#8217;re just going to start off running. The WordPress Community Summit happened a couple of weeks ago. I&#8217;ve been talking about it on this podcast for a few months now, but if you&#8217;ve missed it and you want a refresher, go ahead and give episode 49 a listen.</p>\n\n\n\n<p>At the Community Summit, there were 125 people, if I remember correctly. And we covered a wide array of topics that were brought to us directly from the community itself. While the event is small, it is specifically designed for gathering and sharing information. So, I&#8217;ve got some top-level trends that I noticed that I&#8217;m going to share with you all today, as well as just like a reminder of what happens after a Community Summit.</p>\n\n\n\n<p>[00:01:27] <strong>Josepha:</strong>&nbsp;So there are three, maybe four, big trends that I noticed. The first one that I noticed is that we have a lot of discussions right now about contributor acknowledgment. That also, for what it&#8217;s worth, came with an unresolved question around whether acknowledgment and recognition are the same. I don&#8217;t think they are the same.</p>\n\n\n\n<p>But it also was part of a conversation around whether we treat those two things the same. And if they are not the same, should we treat them differently? And et cetera, et cetera, et cetera. For folks who&#8217;ve been around for a bit, you know, that we spent a lot of time working on our contributor recognition a few years back and had really made quite a bit of difference in just reported feelings about how the community felt they were being recognized for their contributions.</p>\n\n\n\n<p>And so a lot of the conversations that we ended up having were around whether or not the project as a whole has changed the way that we provide that recognition or acknowledgment. Or, as an alternative, if the community that is supporting WordPress has changed how they would like to be recognized.</p>\n\n\n\n<p>[00:02:32] <strong>Josepha:</strong>&nbsp;There were also some questions about whether or not making sure that contributors can see their impact. Like they can say, I contributed 10 hours last month, and these are the two things that I got accomplished over there, and that everyone else can see those things too. So, how we can do that more easily while also not having so many metrics and making the metrics so prevalent that we start to close out the people who are truly just doing this for fun.</p>\n\n\n\n<p>Like many of the problems that we have at the Community Summit, this is a bunch of pretty much unsolved mysteries at the moment. But it did; it came up across probably five or six different sessions that I heard about, quite a few that I went to myself, and so contributor acknowledgment and recognition is on our minds again.</p>\n\n\n\n<p>A second thing that I noticed across multiple sessions, and this one honestly is not a surprise at all, is that there were a lot of questions about what the next big thing is after Gutenberg. I always love when people are asking big questions about what comes next because it means that we all still believe that there will be a next.</p>\n\n\n\n<p>[00:03:43] <strong>Josepha:</strong>&nbsp;And so I never hesitate when I hear these questions to give some ideas about what I think might be coming. But a lot of the discussions that we were having were around, we think this is coming, but now that we think this is coming, what should we do now to make sure that we are ready for it? One of the biggest assumptions that we all had is that for the CMS, for the software itself, probably our next big area after Gutenberg is going to be something about artificial intelligence.</p>\n\n\n\n<p>Matt pointed out in his presentation that he has told us twice to learn something deeply. One was in 2016 when he said, learn JavaScript Deeply. And then one was in 2022 when he said to learn AI deeply. And so we all kind of are guessing that that is our future area. And so that&#8217;s an area for everyone to spend some time in. Make sure you understand it. Make sure you know it a bit.&nbsp;</p>\n\n\n\n<p>The second thing that came up as like a future, where are we going here? It was kind of on the business-y side. It was on a lot of questions about enterprise and are we selling properly to enterprise. Can we sell, can we appeal to enterprise? Whose job is it to sell any of these things? Questions like that. So, lots of business questions again. This is not something that I have any concerns about. I&#8217;m very excited to see that people are talking about it. That&#8217;s been a topic of conversation since, I want to say, February of this year. And so it also wasn&#8217;t a surprise inclusion today. And, and I was excited to see, am excited to see what we get out of those conversations over time.&nbsp;</p>\n\n\n\n<p>[00:05:17] <strong>Josepha:</strong>&nbsp;As far as like questions around what&#8217;s next for the community, I&#8217;m going to address that separately because it was a huge question for everyone. So I&#8217;m going to discuss that as soon as we get finished with this chunk about like the big thing that, that is coming after Gutenberg.</p>\n\n\n\n<p>But, from an ecosystem perspective. Like a WordPress project operations perspective, this came up a couple of times. Never in as clear a word, a set of words as that, but the question about, like, what are we doing with our tools? Are we making sure that we are keeping the tools that our contributors use maintained and still in an excellent space with features that are useful and, necessary, and requested?</p>\n\n\n\n<p>And so that is a big question. I do have a lot of questions about that. Also, there are so many tools that I have wanted in order to make organizing the WordPress community better and easier, but also making contributing better and easier. And hopefully, here soon, we have an opportunity to get to some of those.</p>\n\n\n\n<p>[00:06:16] <strong>Josepha:</strong>&nbsp;So, the third big trend that I kept seeing at the Community Summit is actually about the community itself, specifically about events. So I was part of or listened to many, many, many conversations over the course of the week that were specifically focused on what we&#8217;re going to do with the future of our events. Like are meetups still sustainable? Are WordCamps still sustainable? And that&#8217;s from not only the idea of sustainability that we all tend to know from like an ecological standpoint but also, you know, checking in on the resources. So the kinds of questions that folks had were, is it time to continue having many small events, or is it time to move to a few giant events?</p>\n\n\n\n<p>Should we bring back midsized, WP-adjacent events like PressNomics or LoopConf? And if we are bringing those back, do we want to have them be part of a semi-official thing along with a clearly WordPress event and like do joint sales in there? Try to figure out how to get people from one to the other, so that it&#8217;s not just WordPress people that we&#8217;re talking to, but also business people and advanced developers, things like that.</p>\n\n\n\n<p>There was also a lot of discussion about whether or not we have gotten too big, should we double down on our grassroots efforts? Just go all the way back to, like, BarCamp style, WordPress in a forest kind of thing.&nbsp;</p>\n\n\n\n<p>[00:07:46] <strong>Josepha:</strong>&nbsp;And yeah, and among all of these conversations, there were questions about the resources that we need. Do we have what we need now? Do we have plans for how to maintain those resources in the future? Do we have enough time? Do we have enough money? Do we have an expertise? The people? So many questions, so many questions. And on the community side of things, we also had a lot of questions that are routine in open source. Like, do we have a pipeline for future maintainers, for future team reps, for future leaders in the project? All of the questions.&nbsp;</p>\n\n\n\n<p>So, those are the three slash four, depending on how you break it out, really big trends that I saw across the conversation at the Community Summit. And I don&#8217;t necessarily know the answers to all of these things. Like, I know what my gut tells me, I know what I believe the answer to be. From my own perspective, but as you&#8217;ve been told many times with many eyes, all bugs are shallow. And so here is what happens next with a Community Summit. So we&#8217;ve gathered all of these things together. We&#8217;ve had these conversations, and now all of the notes from every conversation that we had will be put on make.wordpress.org/summit.&nbsp;</p>\n\n\n\n<p>[00:09:10] <strong>Josepha:</strong>&nbsp;There, you can do any of the following three things, but at least do one before we get any further. I think it&#8217;s important to remind everyone that no decisions were made at the Community Summit. There are a few things that will come out of the Community Summit where the answer the way forward is really obvious. And so those probably will get done quickly thereafter because it&#8217;s just an obvious thing to do. It makes sense for everyone in the project. It makes sense for everyone who&#8217;s using WordPress. Whatever reason.&nbsp;</p>\n\n\n\n<p>So those things will probably move quickly, but mostly not even mostly there were no decisions made. And so if it looks like something is moving quickly there, it is because it makes sense after the fact. So there&#8217;s that. But the three things that you can do in order to take part in this information gathering and sharing that happened at the Community Summit.&nbsp;</p>\n\n\n\n<p>Number one, head over to make.wordpress.org/summit and just read the notes. There are a lot of them you can pick and choose based on the teams you contribute to or the topics that are specifically interesting. Or if you have been assigned to read one of these things, obviously, go ahead and read that. But find the notes read them. Take a look at the discussion as far as you can tell it happened and get a sense for what the essential question is.</p>\n\n\n\n<p>The second thing that you can do while you&#8217;re there is that you can join in that discussion right there in the comments if you would like to. You can, if you feel like your perspective is not quite accounted for in that, obviously leave some comments and let folks know. But also, if you feel like your perspective was accounted for, but there&#8217;s also a very specific question that was not necessarily answered or not even brought up, share those as well. That&#8217;s stuff that we would like to know as we are working through this.&nbsp;</p>\n\n\n\n<p>And then the third thing that you can do is you can take those conversations, and if there&#8217;s anything that looks like it&#8217;s particularly relevant to your local WordPress community, absolutely take those there and have those conversations with them.</p>\n\n\n\n<p>[00:11:23] <strong>Josepha:</strong>&nbsp;And once you&#8217;ve had those conversations, let us know what you thought also in those comments, or take it directly into your weekly teams&#8217; chat, either way. We want to hear what you think about the questions that were brought because you brought them to us. And so you should have an opportunity to tell us what you think.</p>\n\n\n\n<p>[00:11:39] (Music Interlude)&nbsp;</p>\n\n\n\n<p>[00:11:48] <strong>Josepha:</strong>&nbsp;That brings us now to our small list of big things. My friends, there&#8217;s nothing but big things left for the rest of the year. And so here we go. Number one, uh, I mentioned it quite a bit. There&#8217;s a conversation, an ongoing conversation about the future of events for our community. Right now, there is an open call for ideas, new features for our NextGen WordPress events, especially on the page that exists on WordCamp Central.</p>\n\n\n\n<p>So, we want to find the most useful and desirable features for a future homepage on central.wordcamp.org that would host a list of all of our upcoming WordPress events. And so we want your opinion there. Please let us know what would be especially useful to you as you are looking for WordPress events to attend.</p>\n\n\n\n<p>The second thing is that we introduced 2024, the default theme that is coming with WordPress 6.4, was announced. We have had, I think, 32 contributors to it at the time of this recording. And yeah, it&#8217;s beautiful. It&#8217;s got a lot of different implementation options, a lot of default patterns, and curated patterns so that you can get exactly what you want out of that theme. I think it&#8217;s going to make a great default theme, a great starter theme for our final release of the year.&nbsp;</p>\n\n\n\n<p>And then, speaking of 6.4, with the release of 6.3 behind us, we are working hard on bringing 6.4 to the community. You can get involved with the development of that. There is a core chat every Wednesday. It happens. I want to say at 21:00 UTC, but I don&#8217;t actually know off the top of my head. I just go when my calendar tells me to go, and I live in the central time zone. And so, my UTC conversion is not the best, but we will leave the actual information about that in the show notes so that you can see it. But you can also go over to make.wordpress.org, and then there&#8217;s a little card on that homepage that tells you exactly when those core meetings are, including the new contributor meeting, which happens every two weeks.&nbsp;</p>\n\n\n\n<p>And then the fourth thing is that there is a successful WordCamp US behind us. That is our final flagship event of the year, which is always exciting. If you missed it, for one, we missed you. And for two, we have you covered. We&#8217;ve got a recap of the event. There is a link to that in the show notes as well.&nbsp;</p>\n\n\n\n<p>[00:14:05] <strong>Josepha:</strong> And that, my friends, is your small list of big things. Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p>[00:14:15] (Music Outro)&nbsp;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15911\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 6.3.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/08/wordpress-6-3-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Aug 2023 14:43:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:14:\"minor-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15886\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"WordPress 6.3.1 is available!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5097:\"\n<h2 class=\"wp-block-heading\">WordPress 6.3.1 is now available!</h2>\n\n\n\n<p>This minor release features&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=6.3.1&amp;group=status&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;col=keywords&amp;order=priority\">4 bug fixes in Core</a>&nbsp;and&nbsp;<a href=\"https://github.com/orgs/WordPress/projects/103/\">6 bug fixes for the block editor</a>. You can review a summary of the maintenance updates in this release by reading the&nbsp;<a href=\"https://make.wordpress.org/core/2023/08/23/wordpress-6-3-1-rc1-is-now-available/\">Release Candidate announcement</a>.</p>\n\n\n\n<p>WordPress 6.3.1 is a short-cycle release. The next major release will be&nbsp;<a href=\"https://make.wordpress.org/core/6-4/\">version 6.4</a>&nbsp;planned for November 2023.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can&nbsp;<a href=\"https://wordpress.org/wordpress-6.3.1.zip\">download WordPress 6.3.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information on this release, please&nbsp;<a href=\"https://wordpress.org/support/wordpress-version/version-6-3-1\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by&nbsp;<a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a> and <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, with the help of <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>&nbsp;on mission control, and <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> who worked on Gutenberg backports.</p>\n\n\n\n<p>WordPress 6.3.1 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-medium\" style=\"font-size:18px\"><a href=\'https://profiles.wordpress.org/antonvlasenko/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>antonvlasenko</a>, <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>, <a href=\'https://profiles.wordpress.org/austinginder/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>austinginder</a>, <a href=\'https://profiles.wordpress.org/azaozz/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>azaozz</a>, <a href=\'https://profiles.wordpress.org/dd32/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dd32</a>, <a href=\'https://profiles.wordpress.org/dlh/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dlh</a>, <a href=\'https://profiles.wordpress.org/frankit/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>frankit</a>, <a href=\'https://profiles.wordpress.org/get_dave/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>get_dave</a>, <a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromTonya</a>, <a href=\'https://profiles.wordpress.org/khokansardar/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>khokansardar</a>, <a href=\'https://profiles.wordpress.org/mathsgrinds/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mathsgrinds</a>, <a href=\'https://profiles.wordpress.org/mukesh27/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mukesh27</a>, <a href=\'https://profiles.wordpress.org/peterwilsoncc/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>peterwilsoncc</a>, <a href=\'https://profiles.wordpress.org/presskopp/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>Presskopp</a>, <a href=\'https://profiles.wordpress.org/rajinsharwar/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rajinsharwar</a>, <a href=\'https://profiles.wordpress.org/ravanh/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>RavanH</a>, <a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a>, and <a href=\'https://profiles.wordpress.org/tmatsuur/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>tmatsuur</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac,&nbsp;<a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the&nbsp;<a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C055Y7FKS7N\">#6-4-release-leads</a> channels. Need help? Check out the&nbsp;<a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Thanks to&nbsp;<a href=\'https://profiles.wordpress.org/jeffpaul/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jeffpaul</a> for proofreading.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15886\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"The Future of WordPress &amp; What’s Next for Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 27 Aug 2023 04:50:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15879\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:431:\"Nearly 2,000 attendees gathered for two days of keynotes, sessions, and community-building conversations at the Gaylord National Resort &#38; Convention Center in the largest attended WordCamp US ever. Saturday’s sessions concluded with back-to-back keynotes by WordPress co-founder Matt Mullenweg and Executive Director Josepha Haden Chomphosy.  What’s Next for WordPress Josepha launched her keynote by celebrating [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7491:\"\n<p>Nearly 2,000 attendees gathered for two days of keynotes, sessions, and community-building conversations at the Gaylord National Resort &amp; Convention Center in the largest attended WordCamp US ever. Saturday’s sessions concluded with back-to-back keynotes by WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> and Executive Director <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>. </p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s Next for WordPress</h2>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/3OaypzgzAlw?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Josepha launched her keynote by celebrating 20 years of WordPress and reflecting on its journey from a blogging tool to the world&#8217;s most popular community-driven web platform. On WordPress as a platform for empowerment and change, Josepha shared, “The more people that know about WordPress, the more people can access the incredible opportunities that WordPress can provide.” And that sustaining the platform for future generations ensures these opportunities will persist. She added, “We exist for as long as people want to use our software.”</p>\n\n\n\n<p>The community is the key to sustaining WordPress, and Josepha touched on the importance of WordCamps, workshops, and events that create value, promote inclusivity,&nbsp; and spark inspiration. WordPress can be a catalyst for positive change in the life of a contributor, end user, or site builder.</p>\n\n\n\n<p>Concluding her keynote, Josepha asked the audience to think about the story they’d want to tell about themselves and their time in WordPress; and the story they would want WordPress to tell the world.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s Next for Gutenberg</h2>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/EavRd7PtA0Q?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Matt began his keynote with a touch of nostalgia, referring to a comment on his personal blog in 2003 by WordPress Co-founder <a href=\"https://profiles.wordpress.org/mikelittle/\">Mike Little</a>, and then looked ahead to the most recent release, WordPress 6.3. As this year’s largest release, it includes new features such as the Command Palette, a quick way (⌘+k on Mac or Ctrl+k on Windows) to search your site and access common commands.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://wordpress.org/download/releases/6-3/\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"535\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=1024%2C535&#038;ssl=1\" alt=\"WordPress 6.3 Lionel\" class=\"wp-image-15795\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=1024%2C535&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=300%2C157&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=768%2C401&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=1536%2C802&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?resize=2048%2C1070&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Featured-Image.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>Matt continued, “WordPress never rests, so right around the corner is <a href=\"https://make.wordpress.org/core/6-4/\">WordPress 6.4</a> on Nov 7… with some cool new features.” He shared that 6.4, like 5.6, will be an underrepresented gender-led release. A new default theme, <a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Twenty Twenty-Four</a>, is tailored for entrepreneurs and small businesses, photographers and artists, and writers and bloggers. Additionally, 6.4 will feature integrated font management and Image block options to expand single images for optimal viewing.</p>\n\n\n\n<p>Looking further into the future, Matt highlighted Phase 3 of the Gutenberg project, which will focus on workflows and collaboration, “moving WordPress from a single-player to a multi-player tool.” In that spirit of collaboration, a new <a href=\"https://wordpress.slack.com/archives/C05PY7QLR5F\">#LMS</a> working group will also bring WordPress learning management systems together to improve the web standards for courses and learning content.</p>\n\n\n\n<p>Beyond Phase 3, Matt shared thoughts about what it means to support WordPress many years from now. A new <a href=\"https://wordpress.com/100-year/\">100-Year Plan</a> from WordPress.com is an exploration into long-term planning for your online presence. He encouraged attendees to be inspired by the region&#8217;s history, reflecting on what it would mean to honor the past while anticipating and planning for the future.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Q&amp;A</h2>\n\n\n\n<p>A Q&amp;A session followed the keynotes, with questions submitted by the in-person audience and live stream viewers.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/3Fa0Q-brSeI?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Additional questions will be answered in a future post on <a href=\"https://make.wordpress.org/project/\">make.WordPress.org/project/</a>. Join the <a href=\"https://make.wordpress.org/\">global community making WordPress</a> and be part of our journey toward a brighter future!</p>\n\n\n\n<p><em>Thank you to </em><a href=\"https://profiles.wordpress.org/angelasjin/\"><em>@angelasjin</em></a><em>, </em><a href=\"https://profiles.wordpress.org/bjmcsherry/\"><em>@bmcsherry</em></a><em>, </em><a href=\"https://profiles.wordpress.org/cbringmann/\"><em>@cbringmann</em></a><em>, </em><a href=\"https://profiles.wordpress.org/dansoschin/\"><em>@dansoschin</em></a><em>, and </em><a href=\"https://profiles.wordpress.org/eidolonnight/\"><em>@eidolonnight</em></a><em> for collaborating on this post.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15879\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:64:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WP20 – A Heartfelt Thanks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2023/08/wp20-a-heartfelt-thanks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Aug 2023 14:54:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"WP20\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15471\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:484:\"Earlier this year, WordPressers around the globe united to celebrate 20 years of community and innovation. There were parties, blogs, videos, and social media posts aplenty. And, of course, the trending hashtag, “#WP20”.\n\nThroughout April and May, community members reflected on their journeys - what brought them to WordPress and its personal meaning. The stories, tweets, and videos were inspiring, nostalgic, and even humorous at times. There was swag, and the cakes were epic.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:68:\"https://wordpress.org/news/files/2023/08/wp20-celebrate-animated.mp4\";s:6:\"length\";s:7:\"2964981\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:38216:\"\n<figure class=\"wp-block-video\"><video autoplay controls loop muted src=\"https://wordpress.org/news/files/2023/08/wp20-celebrate-animated.mp4\" playsinline></video></figure>\n\n\n\n<p>Earlier this year, WordPressers around the globe united to celebrate 20 years of community and innovation. There were parties, blogs, videos, and social media posts aplenty. And, of course, the trending hashtag, “#WP20”.</p>\n\n\n\n<p>Throughout April and May, community members reflected on their journeys &#8211; what brought them to WordPress and its personal meaning. The stories, tweets, and videos were inspiring, nostalgic, and even humorous at times. There was swag, and the cakes were epic.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Let’s take a look!</h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-3 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">On WordPress turning 20, and the Audrey Scholars program: <a href=\"https://t.co/Etwh8H6xh4\">https://t.co/Etwh8H6xh4</a></p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1662582800451776512?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">WordPress celebrates 20 years tomorrow. It&#39;s grown from a comment on a blog post to a web spanning phenomenon. Thanks to an outstanding community and the freedoms of Open Source. Happy Birthday, WordPress! <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://t.co/fght4XMJXb\">pic.twitter.com/fght4XMJXb</a></p>&mdash; Mike Little (@mikelittlezed1) <a href=\"https://twitter.com/mikelittlezed1/status/1662013891856027649?ref_src=twsrc%5Etfw\">May 26, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">Look at this cute <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> cake from <a href=\"https://twitter.com/RicksBakery?ref_src=twsrc%5Etfw\">@RicksBakery</a>! <a href=\"https://t.co/f88H3usR5R\">pic.twitter.com/f88H3usR5R</a></p>&mdash; Josepha Haden Chomphosy (@JosephaHaden) <a href=\"https://twitter.com/JosephaHaden/status/1662562362979676162?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"es\" dir=\"ltr\">Tenemos regalitos para los que vengáis esta tarde a la Meetup.<a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/PSPsbWluv7\">pic.twitter.com/PSPsbWluv7</a></p>&mdash; Meetup WordPress Torrelodones (@WPTorrelodones) <a href=\"https://twitter.com/WPTorrelodones/status/1671918091398258688?ref_src=twsrc%5Etfw\">June 22, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">So <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> is turning 20 years old today! <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <br><br>Happy birthday to WordPress and its entire community! from me and <a href=\"https://twitter.com/MariekeRakt?ref_src=twsrc%5Etfw\">@MariekeRakt</a> <a href=\"https://t.co/9N9T0SnsdL\">pic.twitter.com/9N9T0SnsdL</a></p>&mdash; Joost de Valk (@jdevalk) <a href=\"https://twitter.com/jdevalk/status/1662398779360702465?ref_src=twsrc%5Etfw\">May 27, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">Happy 20th birthday, <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a>! Our Cebu meetup was a success! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f382.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><br><br>…and our community is growing. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4af.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Thanks to <a href=\"https://twitter.com/hashtag/enspaceCebu?src=hash&amp;ref_src=twsrc%5Etfw\">#enspaceCebu</a> for hosting our party! <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://twitter.com/hashtag/WordPressCebu?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPressCebu</a> <a href=\"https://twitter.com/hashtag/WPCebu?src=hash&amp;ref_src=twsrc%5Etfw\">#WPCebu</a> <a href=\"https://t.co/TUFoKjuoxq\">pic.twitter.com/TUFoKjuoxq</a></p>&mdash; Cebu WordPress Meetup (@WPCebu) <a href=\"https://twitter.com/WPCebu/status/1664957630241189888?ref_src=twsrc%5Etfw\">June 3, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">I&#39;m sure you&#39;ve seen by now, but today is WordPress&#39; 20th birthday! Thank you to <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> and <a href=\"https://twitter.com/mikelittlezed1?ref_src=twsrc%5Etfw\">@mikelittlezed1</a> for following through with a seemingly wild idea. I don&#39;t think anyone could have predicted we&#39;d end up where we are today. Happy birthday <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a>! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f389.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/tAZRlYThuS\">pic.twitter.com/tAZRlYThuS</a></p>&mdash; Jon Desrosiers (@desrosj) <a href=\"https://twitter.com/desrosj/status/1662616708064985088?ref_src=twsrc%5Etfw\">May 28, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"de\" dir=\"ltr\">Hier ist der Recap vom letzten Zürcher <a href=\"https://twitter.com/hashtag/WordPress?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://twitter.com/hashtag/Meetup?src=hash&amp;ref_src=twsrc%5Etfw\">#Meetup</a> im <a href=\"https://twitter.com/westhive?ref_src=twsrc%5Etfw\">@westhive</a> inkl. Audioaufzeichnungen und Slides der Präsentationen, sowie ein paar visuellen Eindrücken des Abends. <a href=\"https://twitter.com/hashtag/BBQ?src=hash&amp;ref_src=twsrc%5Etfw\">#BBQ</a> <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/IycEcb4DQL\">https://t.co/IycEcb4DQL</a></p>&mdash; WordPress Zürich (@wpzurich) <a href=\"https://twitter.com/wpzurich/status/1674695261694701568?ref_src=twsrc%5Etfw\">June 30, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"qme\" dir=\"ltr\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><a href=\"https://twitter.com/hashtag/WCEU?src=hash&amp;ref_src=twsrc%5Etfw\">#WCEU</a> <a href=\"https://twitter.com/hashtag/WCEU2023?src=hash&amp;ref_src=twsrc%5Etfw\">#WCEU2023</a> <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/Uodqd2OotM\">pic.twitter.com/Uodqd2OotM</a></p>&mdash; Osom Studio WordPress &amp; WooCommerce Agency (@OSOM_STUDIO) <a href=\"https://twitter.com/OSOM_STUDIO/status/1667524236406145024?ref_src=twsrc%5Etfw\">June 10, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">Celebrating <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> at <a href=\"https://twitter.com/hashtag/WCEU?src=hash&amp;ref_src=twsrc%5Etfw\">#WCEU</a> with <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> <a href=\"https://twitter.com/JosephaHaden?ref_src=twsrc%5Etfw\">@JosephaHaden</a> <a href=\"https://twitter.com/matias_ventura?ref_src=twsrc%5Etfw\">@matias_ventura</a> <a href=\"https://t.co/9LM9HnEfYn\">pic.twitter.com/9LM9HnEfYn</a></p>&mdash; Felix Arntz (@felixarntz) <a href=\"https://twitter.com/felixarntz/status/1667536517705736193?ref_src=twsrc%5Etfw\">June 10, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n</div>\n</div>\n\n\n\n<p>Want to see more tweets? <a href=\"https://wp20.wordpress.net/live/\">Check out the tweet wall here.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Bits &amp; Bytes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wp20.wordpress.net\">Official website for WP20</a></li>\n\n\n\n<li>The #WP20 hashtag was used at least 18,000 times between March 1 and June 8, 2023 on social peaking on May 27 with at least 2,700+ metions</li>\n\n\n\n<li>165+ meetups took place to celebrate WP20</li>\n\n\n\n<li>At least 4,661 people attended a meetup across six continents</li>\n\n\n\n<li>100+ kits of swag were shipped to meetup organizers</li>\n</ul>\n\n\n\n<p>Want more social media for WordPress? Check out the official accounts here:</p>\n\n\n\n<ul>\n<li><a href=\"https://twitter.com/WordPress\">Twitter</a></li>\n\n\n\n<li><a href=\"https://www.instagram.com/wordpress/\">Instagram</a></li>\n\n\n\n<li><a href=\"https://www.facebook.com/WordPress/\">Facebook</a></li>\n\n\n\n<li><a href=\"https://www.linkedin.com/company/wordpress\">LinkedIn</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/wordpress\">YouTube</a></li>\n\n\n\n<li><a href=\"https://www.pinterest.com/WordPress/\">Pinterest</a></li>\n\n\n\n<li><a href=\"https://www.tumblr.com/wordpress\">Tumblr</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Snapshots from WP20 Celebrations</h2>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-4 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15527\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15527\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fz4aD6_XwAICdz-.jpeg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"769\" height=\"1024\" data-id=\"15518\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=769%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15518\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=769%2C1024&amp;ssl=1 769w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=768%2C1023&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?resize=1154%2C1536&amp;ssl=1 1154w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhuvvbacaagn6c.webp?w=1538&amp;ssl=1 1538w\" sizes=\"(max-width: 769px) 100vw, 769px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"768\" height=\"1024\" data-id=\"15523\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=768%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15523\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxhspnlaqainz1f.webp?w=1536&amp;ssl=1 1536w\" sizes=\"(max-width: 768px) 100vw, 768px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15516\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15516\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?w=1024&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxjpa3oamaaetri.webp?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"828\" height=\"1024\" data-id=\"15517\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?resize=828%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15517\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?w=828&amp;ssl=1 828w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?resize=243%2C300&amp;ssl=1 243w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxjparaaqaa1iji.webp?resize=768%2C950&amp;ssl=1 768w\" sizes=\"(max-width: 828px) 100vw, 828px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15522\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15522\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?resize=1536%2C1152&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxj2btqaaaakewo.webp?w=2048&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"768\" height=\"1024\" data-id=\"15524\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr.webp?resize=768%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15524\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?resize=768%2C1024&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?resize=225%2C300&amp;ssl=1 225w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?resize=1152%2C1536&amp;ssl=1 1152w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?resize=1536%2C2048&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkqdpmxwaa9zvr-scaled.webp?w=1920&amp;ssl=1 1920w\" sizes=\"(max-width: 768px) 100vw, 768px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15519\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15519\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwyami0ja.webp?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"941\" data-id=\"15525\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=1024%2C941&#038;ssl=1\" alt=\"\" class=\"wp-image-15525\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=1024%2C941&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=300%2C276&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=768%2C706&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?resize=1536%2C1411&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxkanzxwcaativc.webp?w=2047&amp;ssl=1 2047w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" data-id=\"15520\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=1024%2C768&#038;ssl=1\" alt=\"\" class=\"wp-image-15520\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoi01sxgamyqi7.webp?w=1280&amp;ssl=1 1280w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"851\" data-id=\"15521\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=1024%2C851&#038;ssl=1\" alt=\"\" class=\"wp-image-15521\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=1024%2C851&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=300%2C249&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=768%2C638&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?resize=1536%2C1276&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxoukosaeaaa-sk.webp?w=2048&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"769\" data-id=\"15526\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec.webp?resize=1024%2C769&#038;ssl=1\" alt=\"\" class=\"wp-image-15526\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=1024%2C769&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=768%2C577&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=1536%2C1154&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/fxm7nexxsaa5vec-scaled.webp?resize=2048%2C1538&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n</figure>\n\n\n\n<h2 class=\"wp-block-heading\">Props</h2>\n\n\n\n<p>WP20 celebrations, swag, websites, social media, graphics, and so much more could not have happened without the wonderful contributions of so many. Beyond the organizers of the 165+ events, there were many people working behind the scenes to ensure WordPress got the recognition it deserved. Thank you to everyone who worked behind the scenes to organize the meetups, create swag, and to spread the word. Some of these hardworking folks include: <a href=\"https://profiles.wordpress.org/nomadskateboarding/\">Mark Andrew</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/tinobarreiro/\">Tino Barreiro</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, <a href=\"https://profiles.wordpress.org/mysweetcate/\">Cate DeRosia</a>, <a href=\"https://profiles.wordpress.org/triforcepower/\">Em DeRosia</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a>, <a href=\"https://profiles.wordpress.org/ngreennc/\">Nyasha Green</a>, <a href=\"https://profiles.wordpress.org/nickhamze/\">Nick Hamze</a>, <a href=\"https://profiles.wordpress.org/meaganhanes/\">Meagan Hanes</a>, <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a>, <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a>, <a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a>, <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">Angela Jin</a>, Winston Koone, Megan Marcel, <a href=\"https://profiles.wordpress.org/ninianepress/\">Jenni McKinnon</a>, <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/sereedmedia/\">Se Reed</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a>, <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco Vera</a>, Andrew Wikel, and <a href=\"https://profiles.wordpress.org/adamwood/\">Adam Wood</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Some More Fun</h2>\n\n\n\n<p>A WordPress event is not complete without a Wapuu, and not only was there one, but there was a whole campaign to color it in! Thanks to <a href=\"https://profiles.wordpress.org/triforcepower/\">Em DeRosia</a> for creating the commemorative Wapuu!</p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-6 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"737\" height=\"1024\" data-id=\"15532\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=737%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15532\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=737%2C1024&amp;ssl=1 737w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=216%2C300&amp;ssl=1 216w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?resize=768%2C1067&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/Fs33fvqWcAAKRbx.png?w=864&amp;ssl=1 864w\" sizes=\"(max-width: 737px) 100vw, 737px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"737\" height=\"1024\" data-id=\"15528\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=737%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15528\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=737%2C1024&amp;ssl=1 737w, https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=216%2C300&amp;ssl=1 216w, https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?resize=768%2C1067&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FrU8oOFaQAEZLPY.jpeg?w=864&amp;ssl=1 864w\" sizes=\"(max-width: 737px) 100vw, 737px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"722\" height=\"956\" data-id=\"15531\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Ft8DCn9WcA08xYZ.jpeg?resize=722%2C956&#038;ssl=1\" alt=\"\" class=\"wp-image-15531\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Ft8DCn9WcA08xYZ.jpeg?w=722&amp;ssl=1 722w, https://i0.wp.com/wordpress.org/news/files/2023/07/Ft8DCn9WcA08xYZ.jpeg?resize=227%2C300&amp;ssl=1 227w\" sizes=\"(max-width: 722px) 100vw, 722px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"832\" height=\"1024\" data-id=\"15534\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=832%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15534\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=832%2C1024&amp;ssl=1 832w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=244%2C300&amp;ssl=1 244w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?resize=768%2C945&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtyXUDZXgAA1G1K.jpeg?w=975&amp;ssl=1 975w\" sizes=\"(max-width: 832px) 100vw, 832px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"819\" height=\"1024\" data-id=\"15533\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=819%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15533\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=819%2C1024&amp;ssl=1 819w, https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=240%2C300&amp;ssl=1 240w, https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?resize=768%2C960&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FuvXFqHWAAY7Yob.jpeg?w=960&amp;ssl=1 960w\" sizes=\"(max-width: 819px) 100vw, 819px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"829\" data-id=\"15530\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=1024%2C829&#038;ssl=1\" alt=\"\" class=\"wp-image-15530\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=1024%2C829&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=300%2C243&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?resize=768%2C622&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxHdOAdXwAE_4w9.jpeg?w=1121&amp;ssl=1 1121w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"712\" data-id=\"15535\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=1024%2C712&#038;ssl=1\" alt=\"\" class=\"wp-image-15535\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=1024%2C712&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=300%2C209&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?resize=768%2C534&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtsDGoiaUAA91ug.jpeg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"709\" height=\"1024\" data-id=\"15536\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=709%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15536\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=709%2C1024&amp;ssl=1 709w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=208%2C300&amp;ssl=1 208w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?resize=768%2C1109&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FtxoedaacAYaIeq.jpeg?w=831&amp;ssl=1 831w\" sizes=\"(max-width: 709px) 100vw, 709px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"737\" height=\"1024\" data-id=\"15529\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=737%2C1024&#038;ssl=1\" alt=\"\" class=\"wp-image-15529\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=737%2C1024&amp;ssl=1 737w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=216%2C300&amp;ssl=1 216w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?resize=768%2C1066&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/FxIvqkGWIAEPKt8.jpeg?w=970&amp;ssl=1 970w\" sizes=\"(max-width: 737px) 100vw, 737px\" data-recalc-dims=\"1\" /></figure>\n</figure>\n\n\n\n<p>The Marketing team ran an interactive campaign, <a href=\"https://make.wordpress.org/marketing/2023/05/02/20-days-to-celebrate-20-years-of-wordpress-from-blogs-to-blocks/\"><em>From Blogs to Blocks</em></a>, a series of prompts across 20 days for WordPress enthusiasts to celebrate all-things WordPress.</p>\n\n\n\n<p>Additional campaigns took place on social media and included prompting folks to share their favorite WordPress memory and most cherished WordPress swag item, to highlight the 21 contributing teams, and even to share a birthday greeting.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"500\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">My fav <a href=\"https://twitter.com/hashtag/WordPress?src=hash&amp;ref_src=twsrc%5Etfw\">#WordPress</a> swag, which I use daily! This was the speaker swag from <a href=\"https://twitter.com/hashtag/WCBos?src=hash&amp;ref_src=twsrc%5Etfw\">#WCBos</a> 2019. <a href=\"https://twitter.com/melchoyce?ref_src=twsrc%5Etfw\">@melchoyce</a>, I think you designed this stunning logo? <a href=\"https://twitter.com/hashtag/WP20?src=hash&amp;ref_src=twsrc%5Etfw\">#WP20</a> <a href=\"https://t.co/1sEIEMGzM9\">https://t.co/1sEIEMGzM9</a> <a href=\"https://t.co/F0ufF9msqP\">pic.twitter.com/F0ufF9msqP</a></p>&mdash; Angela Jin (@AngelaSJin) <a href=\"https://twitter.com/AngelaSJin/status/1650832707683864578?ref_src=twsrc%5Etfw\">April 25, 2023</a></blockquote><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</div></figure>\n\n\n\n<p>We had lots of digital goodies too! From 3D desktop wallpaper, to selfie-props for the celebrations, and more. <a href=\"https://wp20.wordpress.net/swag/\">You can download them here</a>.</p>\n\n\n\n<div class=\"wp-block-jetpack-tiled-gallery aligncenter is-style-rectangular\"><div class=\"tiled-gallery__gallery\"><div class=\"tiled-gallery__row\"><div class=\"tiled-gallery__col\" style=\"flex-basis:37.05595%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=900&#038;ssl=1 900w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=1500&#038;ssl=1 1500w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?strip=info&#038;w=1600&#038;ssl=1 1600w\" alt=\"\" data-height=\"900\" data-id=\"15830\" data-link=\"https://wordpress.org/news/?attachment_id=15830\" data-url=\"https://wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png\" data-width=\"1600\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-selfie-glasses-1024x576.png?ssl=1\" data-amp-layout=\"responsive\" /></figure><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg?strip=info&#038;w=600&#038;ssl=1 600w,https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg?strip=info&#038;w=825&#038;ssl=1 825w\" alt=\"\" data-height=\"600\" data-id=\"15829\" data-link=\"https://wordpress.org/news/?attachment_id=15829\" data-url=\"https://wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg\" data-width=\"825\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/wp20-celebrate-desktop.jpg?ssl=1\" data-amp-layout=\"responsive\" /></figure></div><div class=\"tiled-gallery__col\" style=\"flex-basis:62.94405%\"><figure class=\"tiled-gallery__item\"><img decoding=\"async\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?strip=info&#038;w=600&#038;ssl=1 600w,https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?strip=info&#038;w=900&#038;ssl=1 900w,https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?strip=info&#038;w=1200&#038;ssl=1 1200w,https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?strip=info&#038;w=1490&#038;ssl=1 1490w\" alt=\"WP20\" data-height=\"1140\" data-id=\"15854\" data-link=\"https://wordpress.org/news/?attachment_id=15854\" data-url=\"https://wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png\" data-width=\"1490\" src=\"https://i1.wp.com/wordpress.org/news/files/2023/08/wp20-logo-blueberry3x-1024x783.png?ssl=1\" data-amp-layout=\"responsive\" /></figure></div></div></div></div>\n\n\n\n<h2 class=\"wp-block-heading\">Got Swag? Need Swag?</h2>\n\n\n\n<p>It&#8217;s not too late to order your WP20 commemorative items. <a href=\"https://mercantile.wordpress.org/product-category/wp20/\">Find shirts, stickers, and more, while supplies last</a>!</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>See you in five years for the 25th!</strong></h2>\n\n\n\n<p>Sign up here to stay in the &#8220;know&#8221;!</p>\n\n\n	<div class=\"wp-block-jetpack-subscriptions__supports-newline wp-block-jetpack-subscriptions\">\n		<div class=\"jetpack_subscription_widget\">\n			<div class=\"wp-block-jetpack-subscriptions__container\">\n				<form\n					action=\"#\"\n					method=\"post\"\n					accept-charset=\"utf-8\"\n					data-blog=\"14607090\"\n					data-post_access_level=\"everybody\"\n					id=\"subscribe-blog-1\"\n				>\n					<p id=\"subscribe-email\">\n						<label id=\"jetpack-subscribe-label\"\n							class=\"screen-reader-text\"\n							for=\"subscribe-field-1\">\n							Type your email…						</label>\n						<input type=\"email\" name=\"email\" required=\"required\"\n															class=\"no-border-radius  required\"\n																						style=\"font-size: 16px;padding: 15px 23px 15px 23px;border-radius: 0px;border-width: 1px;\"\n														value=\"\"\n							id=\"subscribe-field-1\"\n							placeholder=\"Type your email…\"\n						/>\n					</p>\n\n					<p id=\"subscribe-submit\"\n											>\n						<input type=\"hidden\" name=\"action\" value=\"subscribe\"/>\n						<input type=\"hidden\" name=\"blog_id\" value=\"14607090\"/>\n						<input type=\"hidden\" name=\"source\" value=\"https://wordpress.org/news/feed/\"/>\n						<input type=\"hidden\" name=\"sub-type\" value=\"subscribe-block\"/>\n						<input type=\"hidden\" name=\"redirect_fragment\" value=\"subscribe-blog-1\"/>\n												<button type=\"submit\"\n															class=\"wp-block-button__link no-border-radius\"\n																						style=\"font-size: 16px;padding: 15px 23px 15px 23px;margin: 0px; margin-left: 10px;border-radius: 0px;border-width: 1px;\"\n														name=\"jetpack_subscriptions_widget\"\n						>\n							Subscribe						</button>\n					</p>\n				</form>\n\n							</div>\n		</div>\n	</div>\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15471\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 6.3 “Lionel”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2023/08/lionel/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 20:03:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15718\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:196:\"WordPress 6.3 \"Lionel\" is here! Named after Lionel Hampton, the prolific jazz musician and bandleader, this release was made possible by over 650 contributors. Download WordPress 6.3 Lionel today.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matias Ventura\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:71711:\"\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-15794\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=2048%2C1365&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Say hello to WordPress 6.3 “Lionel,” named after <a href=\"https://en.wikipedia.org/wiki/Lionel_Hampton\">Lionel Hampton</a>, the celebrated American jazz artist. A prolific jazz vibraphonist, pianist, and percussionist, Hampton gained notoriety working in harmony with greats from <a href=\"https://en.wikipedia.org/wiki/Charles_Mingus\">Charles Mingus</a> to <a href=\"https://en.wikipedia.org/wiki/Quincy_Jones\">Quincy Jones</a> and as bandleader of the eponymous Lionel Hampton Orchestra. His artistry and charitable work have been recognized with a Grammy, a star on the Hollywood Walk of Fame, and the National Medal of Arts.</p>\n\n\n\n<p>Be sure to turn up the volume of the <a href=\"https://www.youtube.com/channel/UCpfWWFslWSapwL_q16AboSg/featured\">musical stylings</a> of Lionel Hampton as you discover all “Lionel” has to offer.</p>\n\n\n\n<p>With “Lionel” you can create beautiful and compelling websites more efficiently than ever. Whether you want to build an entire site without coding or are a developer looking to customize every detail, WordPress 6.3 has something to pique your interest. As you unpack and explore this latest release, you will discover updated functions and navigation designed to help you work and create with less effort, design tools that give you more control over layout, and added functionality enriching the site-building experience.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">&#8220;Lionel&#8221; marks a major chapter in the evolution of WordPress as a tool for expression. It’s the culmination of years of work from hundreds of contributors, bringing a more powerful and cohesive editing experience for crafting websites with blocks. It continues the quest of making web publishing approachable for everyone—so it’s also just a new beginning!</p>\n<cite>Matías Ventura, WordPress 6.3 Release Lead</cite></blockquote>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/wordpress-6.3.zip\">Download WordPress 6.3 &#8220;Lionel&#8221; today</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside</h2>\n\n\n\n<p>This momentous release opens new possibilities for the creative expression of designers, creators, and builders. Powerful tools and refined controls give users confidence and allow them to easily manage their sites.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Do everything in the Site Editor</h3>\n\n\n\n<p>WordPress 6.3 brings your content, templates, and patterns together in the Site Editor for the first time. Add pages, browse style variations, create synced patterns, and enjoy fine-tuned control over navigation menus. Spend less time switching across different site areas—so you can focus on what matters most. Creation to completion, all in one place.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image titled: &quot;Do everything in the Site Editor&quot;\" class=\"wp-image-15808\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Do everything in the Site Editor</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Preview Block themes</h3>\n\n\n\n<p>Experience block themes before you switch and preview the Site Editor, with options to customize directly before committing to a new theme.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image about previewing block themes titled Previewing Themes depicting &quot;Previewing: Organizer&quot;\" class=\"wp-image-15769\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Preview a new block theme before you switch and commit</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Create and sync patterns</h3>\n\n\n\n<p>Arrange blocks and save them to the ‘My Patterns’ section for use throughout your site. You can even specify whether to sync your patterns (previously referred to as “Reusable blocks”) so that one change applies to all parts of your site. Or, utilize patterns as a starting point with the ability to customize each instance.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image showing the new My Patterns section in the CMS.\" class=\"wp-image-15768\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>My patterns: All your patterns in one place</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Work faster with the Command Palette</h3>\n\n\n\n<p>Switch to a specific template or open your editor preferences with a new tool that helps you quickly access expanded functionality. With simple keyboard shortcuts (⌘+k on Mac or Ctrl+k on Windows), clicking the sidebar search icon in Site View, or clicking the Title Bar, get where you need to go and do what you need to do in seconds.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Command Palette\" class=\"wp-image-15763\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Get to know the new Command Palette </em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Sharpen your designs with new tools</h3>\n\n\n\n<p>New design controls bring more versatility for fine-tuning, starting with the ability to customize your captions from the Styles interface without coding. You can manage your duotone filters in Styles for supported blocks and pick from the options provided by your theme or disable them entirely. The Cover block gets added settings for text color, layout controls, and border options, making this powerful block even more handy.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image representing the new design tools in the Site Editor\" class=\"wp-image-15764\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>New design tools</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Track design changes with Style revisions</h3>\n\n\n\n<p>With a new audit trail, you can now see how your site looked at a specific time. Visualize these revisions in a timeline and access a one-click option to restore prior styles.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image titled &quot;Style Revisions&quot;\" class=\"wp-image-15770\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Style revisions: See your style revision history </em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Annotate with the Footnotes block</h3>\n\n\n\n<p>Footnotes add convenient annotations throughout your content. Now you can add and link footnotes for any paragraph.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Footnotes Block\" class=\"wp-image-15766\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Add footnotes effortlessly with the new Footnotes Block</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Show or hide content with the Details block</h3>\n\n\n\n<p>Use the Details block to avoid spoiling a surprise, create an interactive Q&amp;A section, or hide a long paragraph under a heading.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Details Block\" class=\"wp-image-15765\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Display or hide content with the new Details Block</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Performance gets a boost</h3>\n\n\n\n<p>WordPress 6.3 has <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">170+ performance updates</a>, including defer and async support for the Scripts API and fetchpriority support for images. These improvements, along with block template resolution, image lazy-loading, and the emoji loader, can dramatically improve your website’s perceived load time.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility remains a core focus</h3>\n\n\n\n<p>Incorporating more than 50 accessibility improvements across the platform, WordPress 6.3 is more accessible than ever. Improved labeling, optimized tab and arrow-key navigation, revised heading hierarchy, and new controls in the admin image editor allow those using assistive technologies to navigate more easily.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other highlights</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Set aspect ratio on images</h4>\n\n\n\n<p>Specify your aspect ratios and ensure design integrity, especially when using images in patterns.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build your site distraction-free</h4>\n\n\n\n<p>Distraction-free designing is now available in the Site Editor.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Rediscover the Top Toolbar</h4>\n\n\n\n<p>A revamped Top Toolbar offers parent selectors for nested blocks, options when selecting multiple blocks, and an interface embedded into the title bar with new functionality in mind.</p>\n\n\n\n<h4 class=\"wp-block-heading\">List View improvements</h4>\n\n\n\n<p>Drag and drop to every content layer and delete any block you would like in the updated List View.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build templates with Patterns</h4>\n\n\n\n<p>Create unique patterns to jumpstart template creation with a new modal enabling access to pattern selection.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Changes in PHP support</h4>\n\n\n\n<p>Support for PHP 5 is discontinued. The&nbsp;new minimum supported version&nbsp;of PHP is 7.0.0.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Failed update safeguards</h4>\n\n\n\n<p>WordPress will now auto-restore the previously installed version of plugins or themes if something goes wrong during a failed manual update.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress and 6.3</h2>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/tutorials/\">Learn WordPress</a> for quick how-to videos, <a href=\"https://learn.wordpress.org/social-learning/\">online workshops</a>, and other resources to level up your knowledge of the latest features in WordPress.&nbsp;</p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a> for detailed developer notes to help you build with WordPress and get the most out of the latest release. Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-3/\">6.3 release notes</a> for additional technical details about this release, including feature recaps, installation information, file changes, fixes, and updates.</p>\n\n\n\n<p>Read and subscribe to the <a href=\"https://developer.wordpress.org/news/\">Developer Blog</a> for even more helpful WordPress content.&nbsp;</p>\n\n\n\n<p>To accompany this release, a new <a href=\"https://wordpress.org/download/releases/6-3/\">web experience</a> has been created to provide a more visual way of getting acquainted with the many improvements and new features of WordPress 6.3. </p>\n\n\n\n<p>Seeing WordPress 6.3 in action doesn&#8217;t stop there! Be sure to watch this brief <a href=\"https://www.youtube.com/watch?v=6JhJcOLySLY\">overview video</a> to get a taste of the many things &#8220;Lionel&#8221; has to offer.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/6JhJcOLySLY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress is a global software platform</h2>\n\n\n\n<p><a href=\"https://translate.wordpress.org/stats/\">61 locales have translated 90 percent</a> or more of WordPress 6.3 into their language. Community translators are working hard to ensure more translations are on their way. Thank you, gracias, ありがとう, धन्यवाद, and ευχαριστώ to everyone who helps to make WordPress available in 200 languages.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"Contributing-to-WordPress\">Contributing to WordPress</h2>\n\n\n\n<p>WordPress believes in democratizing publishing and <a href=\"https://opensource.org/osd-annotated\">the freedoms that come with open source</a>. Supporting this idea is a large community of people collaborating to strengthen the software. A big thank you to everyone who makes WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">Our community of contributors has always been what makes WordPress wonderful. You are what makes sure our project continues to thrive, and our software remains secure, usable, and impactful. Thank you so much for joining together to make the web (and the world) a better place!</p>\n<cite>Josepha Haden Chomphosy, Executive Director, WordPress.org</cite></blockquote>\n\n\n\n<p>WordPress 6.3 arrives thanks to more than 650 contributors&#8217; collective passion and effort in at least 52 countries. This release also includes over 205 first-time contributors!&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">The 6.3 release squad</h3>\n\n\n\n<p>The 6.3 release was led from start to launch by an active set of contributors from across many disciplines. Over several weeks, they kept the release on track and moving forward by connecting ideas, resolving issues, and removing roadblocks.</p>\n\n\n\n<ul>\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a></li>\n\n\n\n<li>Release Coordinators: <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a></li>\n\n\n\n<li>Editor Tech Leads:&nbsp; <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon Dodd</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Glecker</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a>, <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a>, <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a></li>\n\n\n\n<li>Marketing &amp; Communications Leads: <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a></li>\n\n\n\n<li>Test Leads: <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a>, <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>, <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a></li>\n\n\n\n<li>Design Leads: <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a></li>\n\n\n\n<li>Performance Leads: <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">6.3 contributors</h3>\n\n\n\n<p>Complimenting the release squad is a diverse group of contributors whose global collaboration delivered hundreds of enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress community.&nbsp;</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/zgrkaralar/\">&#214;zg&#252;r KARALAR</a> · <a href=\"https://profiles.wordpress.org/6adminit/\">6adminit</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abhi3315/\">abhi3315</a> · <a href=\"https://profiles.wordpress.org/softwortech/\">Abhishek Sharma</a> · <a href=\"https://profiles.wordpress.org/ababir/\">Abir</a> · <a href=\"https://profiles.wordpress.org/abitofmind/\">abitofmind</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/awarner20/\">Adam W. Warner</a> · <a href=\"https://profiles.wordpress.org/adarshposimyth/\">Adarsh Akshat</a> · <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a> · <a href=\"https://profiles.wordpress.org/adi3890/\">Aditya Jain</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> · <a href=\"https://profiles.wordpress.org/ahsannayem/\">Ahsan Chowdhury</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/akmelias/\">akmelias</a> · <a href=\"https://profiles.wordpress.org/wpfy/\">Akramul Hasan</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/xavortm/\">Alex Dimitrov</a> · <a href=\"https://profiles.wordpress.org/cawa-93/\">Alex Kozack</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alexandrelara/\">Alexandre Lara</a> · <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro G&#243;mez</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/akrocks/\">Amaan Khan</a> · <a href=\"https://profiles.wordpress.org/amansurov/\">amansurov</a> · <a href=\"https://profiles.wordpress.org/amin7/\">amin</a> · <a href=\"https://profiles.wordpress.org/sabreuse/\">Amy Hendrix (sabreuse)</a> · <a href=\"https://profiles.wordpress.org/anatoliyav/\">Anatoliy</a> · <a href=\"https://profiles.wordpress.org/anatolikkk/\">Anatoliy Dovgun</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/andizer/\">Andy Meerwaldt</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/anilvaza/\">Anil Vaza</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/reputeinfosystems/\">Ankur Chotai</a> · <a href=\"https://profiles.wordpress.org/annashopina/\">Anna</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/annziel/\">annziel</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonyagrios/\">Antony Agrios</a> · <a href=\"https://profiles.wordpress.org/anver/\">anver</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/arafatjamil01/\">Arafat Jamil</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/ideag/\">Arunas Liuiza</a> · <a href=\"https://profiles.wordpress.org/iamasadpolash/\">Asad Polash</a> · <a href=\"https://profiles.wordpress.org/mrasharirfan/\">Ashar Irfan</a> · <a href=\"https://profiles.wordpress.org/ashikurwp/\">Ashikur Rahman</a> · <a href=\"https://profiles.wordpress.org/nant82/\">Atanas Antonov</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/austinginder/\">Austin Ginder</a> · <a href=\"https://profiles.wordpress.org/filosofo/\">Austin Matzko</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azizantoun/\">azizantoun</a> · <a href=\"https://profiles.wordpress.org/aznadesign/\">Aznadesign</a> · <a href=\"https://profiles.wordpress.org/bangank36/\">bangank36</a> · <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a> · <a href=\"https://profiles.wordpress.org/empireoflight/\">Ben Dunkle</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benlk/\">Ben Keith</a> · <a href=\"https://profiles.wordpress.org/benjgrolleau/\">Benjamin Grolleau</a> · <a href=\"https://profiles.wordpress.org/benjibee/\">benjibee</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/albatross10/\">Bhavik Kalpesh</a> · <a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a> · <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/bitnissen/\">bitnissen</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/wpe_bdurette/\">Brandon DuRette</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a> · <a href=\"https://profiles.wordpress.org/brasofilo/\">brasofilo</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/fischfood/\">Brian Fischer</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bridgetwillard/\">Bridget Willard</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">Bronson Quick</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/caraffande/\">caraffande</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a> · <a href=\"https://profiles.wordpress.org/ceer/\">ceer</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/mrflannagan/\">Chris Flannagan</a> · <a href=\"https://profiles.wordpress.org/clubkert/\">Chris Lubkert</a> · <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/ckoerner/\">ckoerner</a> · <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/corentingautier/\">corentingautier</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/crixu/\">Crixu</a> · <a href=\"https://profiles.wordpress.org/crs1138/\">crs1138</a> · <a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a> · <a href=\"https://profiles.wordpress.org/cshark/\">cshark</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/dbernar1/\">Dan Bernardic</a> · <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/danyk4/\">danyk4</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidmusnik/\">davidmusnik</a> · <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dennysdionigi/\">Dennys Dionigi</a> · <a href=\"https://profiles.wordpress.org/densityapps/\">densityapps</a> · <a href=\"https://profiles.wordpress.org/sccr410/\">Derek Ashauer</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">Derek Blank</a> · <a href=\"https://profiles.wordpress.org/shagors/\">devshagor</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruvishah2203/\">Dhruvi Shah</a> · <a href=\"https://profiles.wordpress.org/digtek/\">DigTek</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dimijazz/\">dimijazz</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/doems/\">doems</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/dsar/\">dsar</a> · <a href=\"https://profiles.wordpress.org/dustyreagan/\">dustyreagan</a> · <a href=\"https://profiles.wordpress.org/ebai4/\">ebai4</a> · <a href=\"https://profiles.wordpress.org/ecorica/\">ecorica</a> · <a href=\"https://profiles.wordpress.org/beckej/\">Ed Beck</a> · <a href=\"https://profiles.wordpress.org/eduwass/\">eduwass</a> · <a href=\"https://profiles.wordpress.org/wpnook/\">Edward</a> · <a href=\"https://profiles.wordpress.org/worldomonation/\">Edwin Takahashi</a> · <a href=\"https://profiles.wordpress.org/ehsanakhgari/\">ehsanakhgari</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a> · <a href=\"https://profiles.wordpress.org/emirpprime/\">emirpprime</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/eric7186/\">eric.7186</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/ernest35/\">Ernest Behinov</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/falgunihdesai/\">Falguni Desai</a> · <a href=\"https://profiles.wordpress.org/iamfarhan09/\">Farhan Ahmed</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a> · <a href=\"https://profiles.wordpress.org/frankit/\">frankit</a> · <a href=\"https://profiles.wordpress.org/franrosa/\">franrosa</a> · <a href=\"https://profiles.wordpress.org/gaeldenysiak/\">gaeldenysiak</a> · <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> · <a href=\"https://profiles.wordpress.org/ecgan/\">Gan Eng Chin</a> · <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a> · <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/wtower/\">George</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gilles66/\">gilles66</a> · <a href=\"https://profiles.wordpress.org/mokagio/\">Gio Lodi</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/grandslambert/\">GrandSlambert</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Zi&#243;łkowski</a> · <a href=\"https://profiles.wordpress.org/gudmdharalds/\">Gudmundur Haraldsson</a> · <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/hrdelwar/\">Habibur Rahman Delwar</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">Hanzala Taifun</a> · <a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/haritpanchal/\">Harit Panchal</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/hasanmisbah/\">Hasan Misbah</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/heiko_mamerow/\">Heiko Mamerow</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/panchalhimani711/\">Himani Panchal</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/hrrarya/\">Hridoy Mozumder</a> · <a href=\"https://profiles.wordpress.org/hugobaeta/\">Hugo Baeta</a> · <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a> · <a href=\"https://profiles.wordpress.org/hberberoglu/\">Huseyin Berberoglu</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/polevaultweb/\">Iain Poulson</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ibrahimmonir/\">Ibrahim Khalil</a> · <a href=\"https://profiles.wordpress.org/shuvoaftab/\">Ibrahim Sharif</a> · <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> · <a href=\"https://profiles.wordpress.org/imanish003/\">imanish003</a> · <a href=\"https://profiles.wordpress.org/intoxination/\">intoxination</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/jacknotman/\">jacknotman</a> · <a href=\"https://profiles.wordpress.org/jahidcse/\">Jahid Hasan</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/james0r/\">james0r</a> · <a href=\"https://profiles.wordpress.org/janboddez/\">Jan Boddez</a> · <a href=\"https://profiles.wordpress.org/jane/\">jane</a> · <a href=\"https://profiles.wordpress.org/jankyz/\">jankyz</a> · <a href=\"https://profiles.wordpress.org/janpaulkleijn/\">janpaulkleijn</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/pbking/\">Jason Crist</a> · <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jbcouton/\">jbcouton</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffmora/\">jeffmora</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jenmylo/\">Jen</a> · <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">Jerry Jones</a> · <a href=\"https://profiles.wordpress.org/jhnstn/\">jhnstn</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/bitmachina/\">John Hooks</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/jomonthomaslobo1/\">Jomon Thomas Lobo</a> · <a href=\"https://profiles.wordpress.org/akbigdog/\">Jon Bourne</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a> · <a href=\"https://profiles.wordpress.org/n2erjo00/\">Joni Erkkil&#228;</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> · <a href=\"https://profiles.wordpress.org/josepmoran/\">Josep Mor&#225;n</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a> · <a href=\"https://profiles.wordpress.org/jhabdas/\">Josh Habdas</a> · <a href=\"https://profiles.wordpress.org/shelob9/\">Josh Pollock</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jqz/\">jqz</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juzar/\">Juzar</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn P.</a> · <a href=\"https://profiles.wordpress.org/kamplugins/\">Kausar Al Mamun</a> · <a href=\"https://profiles.wordpress.org/kausaralm/\">Kausar Alam</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kenwins/\">kenwins</a> · <a href=\"https://profiles.wordpress.org/kevinb/\">Kevin Behrens</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/khokansardar/\">Khokan Sardar</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/koenschipper/\">koenschipper</a> · <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a> · <a href=\"https://profiles.wordpress.org/krishneup/\">Krishna Neupane</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kutsu/\">kutsu</a> · <a href=\"https://profiles.wordpress.org/kzeni/\">KZeni</a> · <a href=\"https://profiles.wordpress.org/leamcaleese/\">L&#233;a McAleese</a> · <a href=\"https://profiles.wordpress.org/lgadzhev/\">Lachezar Gadzhev</a> · <a href=\"https://profiles.wordpress.org/lanacodes/\">Lana Codes</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a> · <a href=\"https://profiles.wordpress.org/wplmillet/\">Laurent MILLET</a> · <a href=\"https://profiles.wordpress.org/laurentmagnin/\">laurentmagnin</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a> · <a href=\"https://profiles.wordpress.org/lessbloat/\">lessbloat</a> · <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a> · <a href=\"https://profiles.wordpress.org/wplindavantol/\">Linda van Tol</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/lowlydev/\">lowlydev</a> · <a href=\"https://profiles.wordpress.org/lphoumpakka/\">lphk</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/madejackson/\">madejackson</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mehdi01/\">Mahdi Hasan</a> · <a href=\"https://profiles.wordpress.org/mahendra0029/\">Mahendra Bishnoi</a> · <a href=\"https://profiles.wordpress.org/nadimcse/\">Mahmudul Haque Nadim</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/majaloncar/\">Maja Loncar</a> · <a href=\"https://profiles.wordpress.org/malae/\">Malae</a> · <a href=\"https://profiles.wordpress.org/malavvasita/\">Malav Vasita</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/maniu/\">maniu</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/marcguay/\">MarcGuay</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a> · <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> · <a href=\"https://profiles.wordpress.org/marianne38/\">marianne38</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a> · <a href=\"https://profiles.wordpress.org/markdoliner/\">markdoliner</a> · <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a> · <a href=\"https://profiles.wordpress.org/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">masteradhoc</a> · <a href=\"https://profiles.wordpress.org/mastrup/\">mastrup</a> · <a href=\"https://profiles.wordpress.org/mat-lipe/\">Mat Lipe</a> · <a href=\"https://profiles.wordpress.org/mathsgrinds/\">mathsgrinds</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matmoe/\">matmoe</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mwtsn/\">Matt Watson</a> · <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a> · <a href=\"https://profiles.wordpress.org/matt_fw/\">matt_fw</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a> · <a href=\"https://profiles.wordpress.org/azouamauriac/\">Mauriac AZOUA</a> · <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> · <a href=\"https://profiles.wordpress.org/cadic/\">Max Lyuchin</a> · <a href=\"https://profiles.wordpress.org/maxcgparis/\">maxcgparis</a> · <a href=\"https://profiles.wordpress.org/maysi/\">maysi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/mcalyster/\">McAlyster</a> · <a href=\"https://profiles.wordpress.org/mcliwanow/\">mcliwanow</a> · <a href=\"https://profiles.wordpress.org/mahamudur78/\">Md Mahamudur Rahaman</a> · <a href=\"https://profiles.wordpress.org/fencermonir/\">Md Monir Hossain</a> · <a href=\"https://profiles.wordpress.org/shuvo247/\">MD Shakibul Islam</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/menakas/\">Menaka S.</a> · <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a> · <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> · <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/mikeday/\">Michael Day</a> · <a href=\"https://profiles.wordpress.org/michaelh/\">MichaelH</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikecho/\">mikecho</a> · <a href=\"https://profiles.wordpress.org/mikeyzm/\">mikeyzm</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/gonzomir/\">Milen Petrinski - Gonzo</a> · <a href=\"https://profiles.wordpress.org/studionashvegas/\">Mitch Canter</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/mitchoyoshitaka/\">mitcho (Michael Yoshitaka Erlewine)</a> · <a href=\"https://profiles.wordpress.org/moinrrahmed/\">Moe</a> · <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a> · <a href=\"https://profiles.wordpress.org/mohanrajp/\">Mohan Raj</a> · <a href=\"https://profiles.wordpress.org/patelmohip/\">Mohip Patel</a> · <a href=\"https://profiles.wordpress.org/mohiuddinomran/\">Mohiuddin Omran</a> · <a href=\"https://profiles.wordpress.org/boemedia/\">Monique Dubbelman</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a> · <a href=\"https://profiles.wordpress.org/mrinal013/\">Mrinal Haque</a> · <a href=\"https://profiles.wordpress.org/mtxz/\">mtxz</a> · <a href=\"https://profiles.wordpress.org/thisisyeasin/\">Muhammad Yeasin</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/tushar284/\">Nahid Hasan</a> · <a href=\"https://profiles.wordpress.org/narthur/\">Narthur</a> · <a href=\"https://profiles.wordpress.org/nataliat2004/\">nataliat2004</a> · <a href=\"https://profiles.wordpress.org/nateallen/\">Nate Allen</a> · <a href=\"https://profiles.wordpress.org/nazgul/\">Nazgul</a> · <a href=\"https://profiles.wordpress.org/nazmul111/\">Nazmul Hosen</a> · <a href=\"https://profiles.wordpress.org/nazmulhudadev/\">Nazmul Huda</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/nickpap/\">nickpap</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a> · <a href=\"https://profiles.wordpress.org/dhrupo/\">Niluthpal Purkayastha</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/njsamsatli/\">njsamsatli</a> · <a href=\"https://profiles.wordpress.org/nkeller15/\">nkeller15</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> · <a href=\"https://profiles.wordpress.org/orestissam/\">Orestis Samaras</a> · <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a> · <a href=\"https://profiles.wordpress.org/owi/\">owi</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pamprn/\">Pamela Ribeiro</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pateljaymin/\">Patel Jaymin</a> · <a href=\"https://profiles.wordpress.org/patriciahillebrandt/\">patriciahillebrandt</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/strategio/\">Pierre Sylvestre</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/pitamdey/\">Pitam Dey</a> · <a href=\"https://profiles.wordpress.org/piyushtekwani/\">Piyush Tekwani</a> · <a href=\"https://profiles.wordpress.org/pkbhatt/\">pkbhatt</a> · <a href=\"https://profiles.wordpress.org/platonkristinin/\">Platon Kristinin</a> · <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pouicpouic/\">pouicpouic</a> · <a href=\"https://profiles.wordpress.org/prashantbhivsane/\">Prashant</a> · <a href=\"https://profiles.wordpress.org/prashantvatsh/\">Prashant Singh</a> · <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prikari/\">Priyanka Adhikari</a> · <a href=\"https://profiles.wordpress.org/przemekhernik/\">Przemek Hernik</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/bi0xid/\">Rafa Poveda</a> · <a href=\"https://profiles.wordpress.org/rfischmann/\">Rafael Fischmann</a> · <a href=\"https://profiles.wordpress.org/rajanpanchal2028/\">Rajan Panchal</a> · <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ratneshsonar/\">Ratnesh Sonar</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/rembem/\">rembem</a> · <a href=\"https://profiles.wordpress.org/renyot/\">ren</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/richards1052/\">richards1052</a> · <a href=\"https://profiles.wordpress.org/richiecarey/\">Richie Carey</a> · <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a> · <a href=\"https://profiles.wordpress.org/rob1n/\">rob1n</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a> · <a href=\"https://profiles.wordpress.org/algorithmsunlocks/\">Ruman Ahmed</a> · <a href=\"https://profiles.wordpress.org/rutviksavsani/\">Rutvik Savsani</a> · <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a> · <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a> · <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">S&#233; Reed</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/suleymankenar/\">S&#252;leyman Kenar</a> · <a href=\"https://profiles.wordpress.org/andy786/\">Sahil B.</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a> · <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/samnajian/\">SamNajian</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarequl/\">Sarequl Basar</a> · <a href=\"https://profiles.wordpress.org/saxonfletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/sdavis2702/\">Sean Davis</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/enchiridion/\">Shannon Little</a> · <a href=\"https://profiles.wordpress.org/shiponkarmakar/\">Shipon Karmakar</a> · <a href=\"https://profiles.wordpress.org/shreyasikhar26/\">Shreyas Ikhar</a> · <a href=\"https://profiles.wordpress.org/shubhamsedani/\">shubhamsedani</a> · <a href=\"https://profiles.wordpress.org/shuvo586/\">shuvo586</a> · <a href=\"https://profiles.wordpress.org/shvv/\">shvv</a> · <a href=\"https://profiles.wordpress.org/shwetabathani2312/\">Shweta Bathani</a> · <a href=\"https://profiles.wordpress.org/siddhantwadhwani/\">Siddhant Wadhwani</a> · <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth ravikumar</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/10upsimon/\">Simon Dowdles</a> · <a href=\"https://profiles.wordpress.org/simonemanfre/\">Simone</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/sirajummahdi/\">Sirajum Mahdi</a> · <a href=\"https://profiles.wordpress.org/sboerrigter/\">Sjoerd Boerrigter</a> · <a href=\"https://profiles.wordpress.org/sjoerdlinders/\">Sjoerd Linders</a> · <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> · <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a> · <a href=\"https://profiles.wordpress.org/enderandpeter/\">Spencer</a> · <a href=\"https://profiles.wordpress.org/sque/\">sque</a> · <a href=\"https://profiles.wordpress.org/srikanthmeenakshi/\">srikanthmeenakshi</a> · <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/vanaf1979/\">Stephan Nijman</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/supersoju/\">supersoju</a> · <a href=\"https://profiles.wordpress.org/codemonksuvro/\">Suvro</a> · <a href=\"https://profiles.wordpress.org/mt_suzette/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/suzettefranck/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/nuhel/\">Syed Nuhel</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/tahmina1du/\">Tahmina Jahan</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/takshil/\">Takshil Kunadia</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tanner-m/\">Tanner Moushey</a> · <a href=\"https://profiles.wordpress.org/thakordarshil/\">Thakor Darshil</a> · <a href=\"https://profiles.wordpress.org/thomask/\">thomask</a> · <a href=\"https://profiles.wordpress.org/thunderdw/\">thunder rumbles</a> · <a href=\"https://profiles.wordpress.org/tijmensmit/\">Tijmen Smit</a> · <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Kr&#252;ss</a> · <a href=\"https://profiles.wordpress.org/tb1909/\">Tim Brath&#228;rig</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/thomasdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/r0uter/\">tonythomas01</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a> · <a href=\"https://profiles.wordpress.org/scep/\">Tryon</a> · <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> · <a href=\"https://profiles.wordpress.org/tyb/\">TyB</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/umeshmcakadi/\">Umesh Patel</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul</a> · <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> · <a href=\"https://profiles.wordpress.org/uxtremist/\">uxtremist</a> · <a href=\"https://profiles.wordpress.org/eboxnet/\">Vagelis</a> · <a href=\"https://profiles.wordpress.org/valterlorran/\">valterlorran</a> · <a href=\"https://profiles.wordpress.org/vasilism/\">Vasilis Manthos</a> · <a href=\"https://profiles.wordpress.org/victoranto/\">victoranto</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vivekawsm/\">vivekawsm</a> · <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> · <a href=\"https://profiles.wordpress.org/wlindley/\">wlindley</a> · <a href=\"https://profiles.wordpress.org/wojtekszkutnik/\">Wojtek Szkutnik</a> · <a href=\"https://profiles.wordpress.org/xerpa43/\">xerpa43</a> · <a href=\"https://profiles.wordpress.org/xmarcos/\">xmarcos</a> · <a href=\"https://profiles.wordpress.org/yaniiliev/\">Yani Iliev</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/zdrobau/\">Zdrobau</a> · <a href=\"https://profiles.wordpress.org/zebaafiashama/\">Zeba Afia Shama</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/zenaulislam/\">Zenaul Islam</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a></p>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress support forums</h3>\n\n\n\n<p>Many thanks to the community volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved today</h3>\n\n\n\n<p>If contributing to WordPress appeals to you, learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and explore the product roadmap on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>. You can also use this <a href=\"https://make.wordpress.org/contribute/\">interactive tool</a> to help you decide which team is right for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking toward the future</h2>\n\n\n\n<p>20 years ago this past May, <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">WordPress shipped the very first version, 0.7</a>. What started with a blog post from co-founder Matt Mullenweg and a subsequent comment by co-founder Mike Little eventually evolved into the world’s most popular web publishing platform.</p>\n\n\n\n<p>WordPress software continues to evolve and iterate based on the needs and desires of its robust and diverse user community. This release is the capstone of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a> along the WordPress <a href=\"https://wordpress.org/about/roadmap/\">development roadmap</a>. As the community looks to the future, all efforts turn to <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">6.4</a> and, subsequently, the transition into <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3</a>, which is expected to introduce powerful collaboration tools to the website creation and management experience.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">6.3 Haiku</h2>\n\n\n\n<p>A capstone release<br>Ships tools for building great sites<br>Collaboration</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15718\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Concerns over the European Union’s Cyber Resilience Act (CRA)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 14:25:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"cra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15686\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:216:\"\"Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation.\" Learn more about the Cyber Resilience Act and its impact on open source.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4334:\"\n<p>As the world’s most popular open source content management system, WordPress acknowledges the European Union&#8217;s initiative to bolster the cybersecurity of digital hardware and software products with the <a href=\"https://www.european-cyber-resilience-act.com/\">Cyber Resilience Act (CRA)</a>. The Act’s effort to counter the increasing threat of cyberattacks and promote informed usage of digital products with increased security updates and transparency is commendable.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>While we wholly endorse the objectives of the CRA, we are apprehensive about the Act&#8217;s implications on open source software due to unclear terms and definitions. </p>\n</blockquote>\n\n\n\n<p>Specifically, the Act’s prohibition on &#8220;unfinished software&#8221; and ambiguous definition of &#8220;commercial activity&#8221; could inadvertently inhibit innovation and economic participation in the European digital landscape.</p>\n\n\n\n<p>Open source projects, like WordPress, often rely on continual updates and improvements—a process that may technically fall under the label of &#8220;unfinished.&#8221; Furthermore, the ambiguous definition of &#8220;commercial activity&#8221; could unintentionally encompass open source projects that are largely driven by communities and operate on a not-for-profit basis.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Our letter to the EU Commission</h2>\n\n\n\n<p>We have jointly authored an open letter addressing these concerns alongside fellow open source projects Drupal, Joomla!, and TYPO3<sup data-fn=\"eb28afbc-3487-447f-9af9-8b0418310a00\" class=\"fn\"><a href=\"#eb28afbc-3487-447f-9af9-8b0418310a00\" id=\"eb28afbc-3487-447f-9af9-8b0418310a00-link\">1</a></sup>. The letter emphasizes the significant contribution of Free and Open Source Software (FOSS) to the EU&#8217;s economy and how the proposed regulations might undermine these efforts. Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation inherent to both the open source community and the <a href=\"https://european-union.europa.eu/principles-countries-history/principles-and-values/aims-and-values_en\">EU’s Aims and Values</a>.</p>\n\n\n\n<p>The letter invites the EU Commission and interested parties to participate in a seminar in Brussels to discuss how we can align the objectives of the CRA with the realities and needs of the FOSS community. We are optimistic that, with mutual understanding and cooperation, we can achieve secure digital products without limiting the vital contributions of open source projects.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-9 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://wordpress.org/news/files/2023/08/Open_Letter_on_the_Significance_of_Free_and_Open_Source_Software_in_the_EU_s_Proposed_Cyber_Resilience_Act.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Read the letter</a></div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\"><ol class=\"wp-block-footnotes\"><li id=\"eb28afbc-3487-447f-9af9-8b0418310a00\"><a href=\"https://www.drupal.org/\">Drupal</a>, <a href=\"https://www.joomla.org/\">Joomla!</a>, <a href=\"https://typo3.com/\">TYPO3</a>, and <a href=\"https://wordpress.org/\">WordPress</a> are the most popular FOSS content management systems on the web today. While all are based on the PHP programming language and distributed under the GPL open source license, each platform takes a different approach to website publishing. With strength in diversity, they form the Inter-CMS Working Group, promoting the values and benefits of free and open source software. <a href=\"#eb28afbc-3487-447f-9af9-8b0418310a00-link\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/21a9.png\" alt=\"↩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />︎</a></li></ol></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15686\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.3 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2023 16:55:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15615\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:226:\"WordPress 6.3 Release Candidate 3 is now available for download and testing.\n\nThe WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general release. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6221:\"\n<p>WordPress 6.3 RC3 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC3 on a test server and site.&nbsp;</p>\n\n\n\n<p>The WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general release.&nbsp;</p>\n\n\n\n<p>For a deeper look into this release, read this overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new since RC2</h2>\n\n\n\n<p>Since the RC2 release on July 25, 2023, there have been approximately 14 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Github</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=07%2F25%2F2023..08%2F01%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a>. To prepare for 6.3 general availability, RC3 also addresses several <a href=\"https://github.com/WordPress/gutenberg/pull/53089\">bugs</a> and adds fixes for retrieving templates (<a href=\"https://github.com/WordPress/wordpress-develop/pull/4940\">#4940</a>) and resolving child theme issues (<a href=\"https://github.com/WordPress/gutenberg/issues/53138\">#53138</a>). Thank you for testing, WordPressers!</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Ways to contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by the community of people collaborating on and contributing to its development. The resources below outline a variety of ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Download RC3 for testing</h3>\n\n\n\n<p>You can test WordPress 6.3 RC3 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2:</strong> Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC3.zip\">RC3 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3: </strong>Use the following WP-CLI command:<br><code>wp core update --version=6.3-RC3</code></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Keep WordPress bug-free—help with testing</h3>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes or plugins? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>This is your final opportunity to test your latest versions against RC3. You will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a>&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p>Phase two, soon complete<br>A monumental release<br>Then onto six-four.</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/meher/\">@Meher</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, and <a href=\"https://profiles.wordpress.org/jpantani/\">@jpantani</a></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15615\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"People of WordPress: Ihtisham Zahoor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/07/people-of-wordpress-ihtisham-zahoor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2023 20:22:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15589\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"People of WordPress features Ihtisham Zahoor, an administrator turned web developer from Pakistan.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:12176:\"\n<p>From administrator to web developer thanks to the supportive WordPress community. Through learning from other software users in Pakistan, Ihtisham Zahoor knew that his life would change. He moved cities and careers to make his life through open source.</p>\n\n\n\n<p><strong>The&nbsp;<em>People of WordPress</em>&nbsp;series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1024%2C768&#038;ssl=1\" alt=\"Ihtisham Zahoor in the moutains.\" class=\"wp-image-15478\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1536%2C1152&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?w=1900&amp;ssl=1 1900w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Ihtisham, from Haripur, a city in northern Pakistan, said: “The WordPress community made me a firm believer in the power of open source software. This is why I am an enthusiast and one who enjoys contributing back to the community via writing, speaking, and helping organize meetups.”</p>\n\n\n\n<p>When Ihtisham discovered WordPress, his fascination for working with computing grew. He knew he did not want to just work in administration his entire career.</p>\n\n\n\n<p>Ihitsham describes himself as an ‘introvert’ and therefore the idea of remote work appealed as he could still add value to others through technology. He was intrigued by the thought of the freedom to choose his work hours. However, without access to others who had already transformed their careers and lives through web development, he felt he ‘had no path to follow to turn my dream into a reality.’</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Challenges become opportunities to learn when there is an active community&nbsp;&nbsp;</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"675\" height=\"900\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?resize=675%2C900&#038;ssl=1\" alt=\"Ihtisham Zahoor wearing a sweatshirt with the London tube sign \'Mind the Gap\'.\" class=\"wp-image-15480\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?w=675&amp;ssl=1 675w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 675px) 100vw, 675px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Lacking any kind of informed support network to advise or guide him, Ihtisham devoted time to online research to find the next steps he could take. Looking back, he believes that for those who are not in a network with others with similar interests, it can be hard to keep learning and experimenting with new things. Isolation can be a barrier to working in web development.&nbsp;&nbsp;</p>\n\n\n\n<p>He said: “I think it is not easy to stay motivated when there aren’t immediate rewards for the hard work we do. Sometimes, weeks would go by when my only focus would be to stay motivated rather than give up.”</p>\n\n\n\n<p>After another two years of combining learning and work, Ihtisham took up using WordPress as a full-time career. He moved to the capital of Pakistan, Islamabad. It was not easy at first. He recalls: “After many failed attempts at getting hired and desperate moments, I finally received an offer from a digital agency as a web developer focused on the WordPress platform.”</p>\n\n\n\n<p>He added: “Moving to work with a bigger agency was one of the best decisions of my life as it helped me with my professional growth by becoming familiar with the whole WordPress ecosystem in a supportive environment. I was valued for my opinions in the web projects in which I was involved. I was also appreciated and encouraged for the open source work I did for the company.” He summarized his enthusiasm for WordPress like this: “It is really interesting figuring out what is happening in the backends. I like problem-solving and finding solutions which you can do with WordPress.”</p>\n\n\n\n<p>During the Covid-19 pandemic, Ihtisham moved to join a start-up which provides web development services to international clients. He works as a developer and has the opportunity to learn more about client communication and project management. “WordPress has opened up so many opportunities for me. It has been an exciting journey for me with lots of learning every day,” he said. In particular, he has discovered an interest in APIs and regularly uses his spare time to follow tickets in the hope of one day contributing even more to topics.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Give back through WordPress community</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"800\" height=\"599\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=800%2C599&#038;ssl=1\" alt=\"Ihtisham Zahoor speaking at a meetup.\" class=\"wp-image-15477\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?w=800&amp;ssl=1 800w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=768%2C575&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>It was not just software that made a difference in Ihtisham’s life. Joining a welcoming and sharing community was transforming for him. Recalling those early days of isolation, he values the WordPress community and is wholly committed to the power of open-source software. He now enjoys writing, speaking, and organizing meetups to give back to the community. He has been involved in developing plugins and themes for the platform, which he describes as a ‘humbling’ experience. He is fond of <a href=\"https://islamabad.wordcamp.org/\">WordCamp Islamabad</a> and in 2023 is on the organizing team to help bring both WordPress and its community to others in Pakistan.</p>\n\n\n\n<p>“My first experience,” he said, “was that everyone was so friendly and open to sharing what they have learned, even though they were all busy working. This really had an impact on me. It really helped me and gave me the confidence that I could work with WordPress…. It was a real step forward for me joining this community.” </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"512\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=1024%2C512&#038;ssl=1\" alt=\"Ihtisham visited WordCamp Karachi.\" class=\"wp-image-15482\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=1024%2C512&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=300%2C150&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=768%2C384&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>A particular meeting in 2018 led to new friendships through the WordPress community. Ihtisham was on a train to Karachi for the first ever Pakistani WordCamp in 2018 and met a group of fellow attendees he now regards as close friends. What impressed him most about the camp was that although he met many people with considerable expertise, they also had a generosity of spirit and humbleness in their willingness to share this knowledge. Now, with this group of friends he is fulfilling another dream of traveling widely across the country. He says these things and other ‘side benefits’ have been made possible by the WordPress community, and for that, he is &#8216;forever grateful&#8217;.<br><br>Ihtisham particularly wanted to share his story through this People of WordPress article to encourage those starting with little or no support to remain persistent. He knows from experience breaking into the tech world can be hard, especially when you may be switching from doing something else and have no ‘track record’ to offer. </p>\n\n\n\n<p>He feels he is a living example of how perseverance can lead to success. He offers these words to anyone thinking of making a move into development using the WordPress platform: “I attribute my success (financial and mental well-being) to the open-source nature of WordPress and its amazing community. It would not be possible to learn and use the plethora of free tools WordPress provides if it weren’t an open-source platform. It is for that reason I feel obligated to contribute back to this platform to the best of my abilities.” To those who are finding getting going difficult, as he did, he adds: “Get yourself a clear learning path and just dive in doing WordPress, and things will get better for you over time as they were for me, I promise. Good Luck!”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<p>To help you discover more about how to use the WordPress software, there is a free resource from the community, <a href=\"https://learn.wordpress.org/\">Learn.WordPress.org</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Ihtisham Zahoor (<a href=\"https://profiles.wordpress.org/shaampk1/\">@shaampk1</a>) for sharing about his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\"//profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Nalini Thakor (<a href=\"//profiles.wordpress.org/nalininonstopnewsuk/\">@nalininonstopnewsuk</a>), and Meher Bala (<a href=\"//profiles.wordpress.org/meher/\">@meher</a>) for interviews, the feature and collaborating on images. To Chloe Bringmann (<a href=\"//profiles.wordpress.org/cbringmann/\">@cbringmann</a>), Mark Smallman (<a href=\"//profiles.wordpress.org/marks99/\">@marks99</a>), and Mary Baum (<a href=\"//profiles.wordpress.org/marybaum/\">@marybaum</a>) for reviews. Thanks to the late Surendra Thakor (<a href=\"//profiles.wordpress.org/sthakor/\">@sthakor</a>), Maja Loncar (<a href=\"//profiles.wordpress.org/majaloncar/\">@majaloncar</a>), Maedah Bahtool (<a href=\"//profiles.wordpress.org/maedahbatool/\">@maedahbatool</a>) and other members of the Marketing and Polyglots Team for their contributions.</p>\n\n\n\n<p>The People of WordPress series thanks Josepha Haden (<a href=\"//profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>) and Topher DeRosia (<a href=\"//profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) for their support.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15589\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sun, 17 Sep 2023 16:11:05 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Thu, 14 Sep 2023 18:25:37 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 6\";}}s:5:\"build\";s:14:\"20230620070633\";}','no'),(625,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1695010266','no'),(626,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1694967066','no'),(627,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1695010267','no'),(628,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"Gutenberg Times: Block Art and Attributes, Gato GraphQL and Command Palette – Weekend Edition 268\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25616\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://gutenbergtimes.com/block-art-and-attributes-gato-graphql-and-command-palette-weekend-edition-268/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15713:\"<p>Howdy, </p>\n\n\n\n<p>Are you also enjoying that last few weeks of summer-like weather in Europe? How is the weather in your part of the world? After I finish this newsletter, I&#8217;ll take a walk through the forest. I haven&#8217;t done this for a long time: <em>shinrin-yoku</em> (<a href=\"https://www.nationalgeographic.com/travel/article/forest-bathing-nature-walk-health\">Forest bathing</a>) is good for the soul.  The forest behind my mother&#8217;s house has been familiar and hardly changed since I was a kid and lived with my grandmother in the same house. What is your favorite ritual to recover from many hours of screen time during the week? <a href=\"mailto:pauli@gutenbergtimes.com\">Hit reply</a> or share in the comments.</p>\n\n\n\n<p>Today&#8217;s newsletter has a little bit about WordPress 6.4 and, block building, much more about theme building and also looking a little bit beyond WordPress with GraphQL and Transformer. </p>\n\n\n\n<p>I hope you enjoy it all this week again! </p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Anne McCarthy</strong> held a Hallway Hangout: To <a href=\"https://make.wordpress.org/test/2023/09/13/hallway-hangout-lets-chat-about-the-wordpress-6-4-evolving-the-fse-outreach-program/\">chat about the WordPress 6.4 &amp; Evolving the FSE Outreach Program</a> and published a summary with the recording. She goes over the roadmap 6.4 post and identifies the state of the features. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his fortnightly updates, <strong>Joen Asmussen</strong> lists the work by the WordPress Design team. In <a href=\"https://make.wordpress.org/design/2023/09/11/design-share-aug-28-sep8/\"><strong>Design Share: Aug 28-Sep8</strong></a> he highlighted: </p>\n\n\n\n<ul>\n<li>Interface for unlinking a style from inherited source&nbsp;</li>\n\n\n\n<li>Refresh of the Hosting page</li>\n\n\n\n<li>Sketch of a dismissible notification that lets you install missing fonts from the library.&nbsp;</li>\n\n\n\n<li>Templates table</li>\n</ul>\n\n\n\n<img width=\"652\" height=\"367\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/09/Screenshot-2023-09-16-at-12.58.25.png?resize=652%2C367&ssl=1\" alt=\"\" class=\"wp-image-25631\" />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>?️ </strong> Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-89-gutenberg-16-6-font-library-default-theme/\">Gutenberg Changelog #89 – Gutenberg 16.6, default theme and Font Library</a> with Nadia Maya Ardiani  as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<p>In her post on <a href=\"https://make.wordpress.org/core/2023/09/12/core-editor-improvement-commanding-the-command-palette/\"><strong>Core Editor Improvement: Commanding the Command Palette</strong></a> <strong>Anne McCarthy</strong>&nbsp;dives deep into the latest updates to the Command Palette, a new tool available with WordPress 6.3 designed to speed up your workflow.&nbsp;With work underway for WordPress 6.4, she gave a peek preview of what&#8217;s in store for the next iteration of this new option in your WordPress creation experience and a reminder of what it’s capable of already.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Anne McCarthy</strong> takes a behind the scence stroll on how the Museum for Block Art collaborated with the organizers of WordCamps to highlight some of the art. <a href=\"https://block-museum.com/2023/09/11/from-pixels-to-reality-celebrating-wordcamp-eu-wordcamp-us-exhibits/\">From Pixels to Reality: Celebrating WordCamp EU &amp; WordCamp US Exhibits</a></p>\n\n\n\n<img width=\"652\" height=\"326\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/09/you-are-getting-sleepy_screenshot.png?resize=652%2C326&ssl=1\" alt=\"You are getting sleepy by Ramon James\" class=\"wp-image-25624\" /><a href=\"https://block-museum.com/2022/03/10/you-are-getting-sleepy/\">You are getting sleepy by Ramon James</a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>My long-time friend <a href=\"https://twitter.com/JenSwish\">Jen Swisher </a>takes you along the journey of <a href=\"https://jetpack.com/blog/wordpress-switch-from-classic-to-block-theme/\"><strong>How to Switch from a Classic Theme to a Block Theme in&nbsp;WordPress</strong></a>. She explains first the option you have, and more importantly why you might consider switching. Then she goes into more practical steps on how to accomplish a migration from your current classic theme to a block theme. Eventually, I will have to follow on a similar path when converting Gutenberg Times to a block theme. At the moment I am unable to focus on such a task, but maybe I can sequester myself for a weekend and get it done. Have you made the jump yet? What did you encounter, are there any pitfalls, that surprised you? </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Munir Kamal </strong>of Gutenberg Hub released the new <a href=\"https://shop.gutenberghub.com/query-taxonomy-filter-block/\"><strong>Query Taxonomy Filter Block</strong></a> to provide users and theme builders a way to extend the functionality of the core query loop. It&#8217;s a premium plugin that expands the capabilities of the core query block for more complex layouts and multiple filter options. It also offers a variety of display controls or facets and customization features.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>On his podcast, <em><a href=\"https://podcasts.apple.com/us/podcast/within-wordpress/id1684480798\">Within WordPress</a></em>, <strong>Remkus De Vries</strong> had a chat with <strong>Ian Svoboda</strong> about creating courses for the WordPress ecosystem and a lot more: <strong><a href=\"https://www.youtube.com/watch?v=17KJ5TLfuVY\">On Block Themes, Custom Block development and a whole lotta WP CLI</a>. </strong>The conversation about Block Themes starts at the <a href=\"https://youtu.be/17KJ5TLfuVY?feature=shared&t=788\">13:04 timestamp</a> (On the YouTube version.) Happy to hear the shout-outs to Fabian Kägy and Aurooba Ahmed, as well as the HTML Processor. The discussion of static vs. dynamic blocks, nothing new, but always interesting to hear other developer perspectives. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong> announced the next phase for the Theme builders documentation overhaul: <a href=\"https://make.wordpress.org/themes/2023/09/15/theme-handbook-overhaul-phase-3-publishing-content/\"><strong>Theme Handbook Overhaul: Phase 3 (Publishing Content)</strong></a> and asked for public review of the last drafts of chapters. The <a href=\"https://github.com/WordPress/Documentation-Issue-Tracker/issues/816\">tracking ticket </a>leads you to the single chapters for your perusal. Helping improve documentation is an excellent way to take a deep dive into building block themes. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On this week&#8217;s Loop podcast, host <strong><a href=\"https://twitter.com/cr0ybot\">Cory Hughart</a></strong> talked to Justin Tadlock on <strong><a href=\"https://blackbird.digital/podcast/28-writing-block-themes-with-justin-tadlock/\">Writing Block Themes</a></strong> about his series of articles on the WordPress developer blog about adding custom controls to core blocks, theme scaffolding, and workflow scripts. They also discuss above mentioned Theme Documentation overhaul. The show notes provide a ton of resources for theme developers</p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>Save the date: <a href=\"https://make.wordpress.org/core/2023/09/14/hallway-hangout-whats-new-for-developers-in-wordpress-6-4/\"><strong>Hallway Hangout: What’s new for developers in WordPress 6.4</strong></a>. On <strong>Thursday, October 12, 2023, at18:00 UTC, </strong>Nick Diego, Ryan Welcher and Justin Tadlock will host a casual conversation about the most important and exciting developer-related changes coming soon in WordPress 6.4. From Block&nbsp;Hooks&nbsp;and the Font Library to improved Editor flows and the new Twenty Twenty-Four theme, there is just so much to talk about.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>This month&#8217;s <em>Developer Hours</em> will cover: <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/295482707/\"><strong>Building better blocks with the &#8216;create-block&#8217; package</strong></a>. Nick Diego and Ryan Welcher will host the event and it will take place on <strong>September 27 at 14:00 UTC.</strong> The two developers will take a deep dive into the functionalities of the&nbsp;<a href=\"https://developer.wordpress.org/block-editor/reference-guides/packages/packages-create-block/#available-commands\" target=\"_blank\" rel=\"noreferrer noopener\">create-block</a>&nbsp;package. Developed to simplify and accelerate the process of building custom WordPress blocks, this package has become an indispensable tool for developers of all levels.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter.com/losoviz\"><strong>Leonardo Losoviz</strong></a>, released version 1.0 of the<a href=\"http://gatographql.com\"> Gato GraphQL</a> plugin. It&#8217;s a rebranded version of GraphQL for WordPress plugin. It brings plenty of improvements, including </p>\n\n\n\n<ul>\n<li>the&nbsp;integration with the (Gutenberg) block editor, </li>\n\n\n\n<li>support for&nbsp;private and password-protected endpoints, and </li>\n\n\n\n<li>the&nbsp;availability of (commercial) extensions&nbsp;to extend the GraphQL schema and provide further functionality.</li>\n</ul>\n\n\n\n<p>This version Gato GraphQL is also on its way to the WordPress plugin repository. On the <a href=\"https://github.com/GatoGraphQL/GatoGraphQL/releases/tag/1.0.6\">GitHub space</a>, Losoviz shared that he based part of the block feature on the <em>WordPress VIP team&#8217;s <a href=\"https://github.com/Automattic/vip-block-data-api/\">Block Data API</a>. </em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Michael Burridge</strong> created a step-by-step tutorial on <a href=\"https://developer.wordpress.org/news/2023/09/understanding-block-attributes/\"><strong>Understanding block attributes</strong></a>. There’s more to block attributes than meets the eye. Attributes contain data needed by your block, and that data can be retrieved from numerous locations, not just the block delimiter. This post shows you the ways.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>If you work in React and JSX you might enjoy this very nifty tool: <a href=\"https://transform.tools/html-to-jsx\"><strong>Transform HTML to JSX</strong></a> by <a href=\"https://twitter.com/ritz078\">Ritesh Kumar</a>. Just paste the HTML of your designs into one box and get well formatted JSX in the second box. </p>\n\n\n\n<p>Kumar and 30+ other contributors created transform tools for all kinds of purposes, ie: JSON to JSDocs, JSON to GraphQL, CSS to JS Objects. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Lego building block  <a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/366646a25b/\">photo</a> by <a href=\"https://wordpress.org/photos/author/ekodesign/\">ekodesign</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Sep 2023 11:17:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: Developers Claim Damaged Trust Following Public Confrontations with WordPress Leadership\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148825\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wptavern.com/developers-claim-damaged-trust-following-public-confrontations-with-wordpress-leadership\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13901:\"<p>The WordPress community is ending two days of heated discussions that rapidly descended into a mire of unbridled emotional confrontations across multiple social channels, following a tweet from John Blackbourn that <a href=\"https://wptavern.com/developers-raise-concerns-about-wordpress-com-plugin-listings-outranking-wordpress-org-on-google\">raised concerns about WordPress.com plugin listings outranking WordPress.org on Google Search</a>.</p>\n\n\n\n<p>Developers expressed concerns about the SEO impact of the practice of cloning WordPress.org&#8217;s plugin directory for use on WordPress.com, with no backlinks to the original plugin. Another concern is that it perpetuates the longstanding confusion between WordPress.org and WordPress.com.</p>\n\n\n\n<p>&#8220;I don&#8217;t think the SEO concern is real, and by that I mean that besides John&#8217;s screenshot, which I think is related to the .org en-gb subdomain decision/bug,&#8221; Matt Mullenweg told the Tavern when asked whether WordPress.com is considering not indexing these pages that duplicate content from WordPress.org. </p>\n\n\n\n<p>&#8220;For general searches I&#8217;m seeing .com 5 pages down,&#8221; he said. &#8220;Just looking at traffic to those pages, they don&#8217;t seem to be getting much if any from search engines! So I&#8217;m not really concerned about SEO of those pages.</p>\n\n\n\n<p>&#8220;The vast majority of the traffic to those is to logged in users. When they click &#8216;manage&#8217; they can easily install it across multiple sites or see where it&#8217;s already installed, which actually works across .com and Jetpack sites.&#8221;</p>\n\n\n\n<p>He offered a similar explanation to Freemius founder Vova Feldman on X, who claimed that WordPress.com has an SEO advantage over independent plugins.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I think you\'re built on an assumption which is easily testable and false in my tests so far: \"DOT com has an SEO advantage&#8230;\"<br /><br />As an easy one to look at, I did a logged-out search for [seo plugin for wordpress]. First page of results is now ads, from WP Engine, SEMRush, AIOSEO,…</p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1702346538339459518?ref_src=twsrc%5Etfw\">September 14, 2023</a></blockquote>\n</div>\n\n\n\n<p>Plugin developers also expressed concerns about new users arriving to a plugin&#8217;s duplicated page on WordPress.com and seeing that the plugin is Free only on the (paid) Business plan. This gives the visitor the impression that the plugin isn&#8217;t available for free elsewhere, because there is no link back to WordPress.org with an explanation.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2402\" height=\"1118\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-15-at-10.26.00-AM.png\" alt=\"\" class=\"wp-image-148876\" />\n\n\n\n<p>Many WordPress.org plugin authors were not aware until recently that their plugin pages are being scraped for use on WordPress.com. Yesterday, <a href=\"https://patchstack.com/articles/patchstack-is-free-on-the-official-wordpress-repository/\">Patchstack updated its readme file</a> to ensure that WordPress.com users and visitors are made aware that the plugin is available for free in the official WordPress plugin repository, using the following text: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>This plugin can be downloaded for free without any paid subscription from&nbsp;<a rel=\"noreferrer noopener\" href=\"https://wordpress.org/\" target=\"_blank\">the official WordPress repository.</a></p>\n</blockquote>\n\n\n\n<p>&#8220;I was at a Python conference last week and a guy came to our booth and said he has a WordPress site but he hasen’t been able to purchase any plugins yet,&#8221; Patchstack CEO Oliver Sild said. &#8220;I told him that they are all free, and then it turned out he had a WordPress.com site where he has to pay to install any plugins. These people think that THIS IS the WordPress.&#8221;</p>\n\n\n\n<p>When asked if WordPress.com could at least link back to the .org plugin for logged-out views to eliminate some of the confusion, Mullenweg confirmed that he told Sild that WordPress.com would work on adding links to the .org equivalent page this week.</p>\n\n\n\n<p>&#8220;But that confusion that people claim is causing huge issues for WordPress isn&#8217;t supported by the numbers or growth of non-.com solutions over 17 years now,&#8221; Mullenweg said. </p>\n\n\n\n<p>&#8220;So at some point we should stop accepting it as within our top 100 issues for WordPress.</p>\n\n\n\n<p>&#8220;It&#8217;s much more likely like a road bump for some newbies, than an actual blocker, not unlike learning the difference between categories and tags, or how to identify a normal-looking comment that&#8217;s actually spam.&#8221;</p>\n\n\n\n<p>In <a href=\"https://twitter.com/photomatt/status/1702391616764289222\">response</a> to WordPress developer Daniel Schutzsmith saying that WordPress.com is causing confusion for OSS, Mullenweg contended that it &#8220;creates a false dichotomy between WP on .com and &#8216;open source software.&#8217; Every site on .com is part of the OSS community as much as on any other host. </p>\n\n\n\n<p>&#8220;When there is confusion, it assumes that it&#8217;s a top issue for WordPress. Nothing about WP&#8217;s growth, including vis a vis other projects, indicates that the existence of a .com and .org with the same name has held us back.&#8221;</p>\n\n\n\n<p>In support of his claims about the growth of non-WordPress.com solutions, he cited a W3Techs report on hosting company usage stats with extrapolated revenue on <a href=\"https://poststatus.com/\">Post Status</a> Slack.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1226\" height=\"1634\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/image.png\" alt=\"\" class=\"wp-image-148881\" />\n\n\n\n<p>&#8220;On revenue: If you extrapolate out public domain numbers with plan pricing, and look at public filings like the amount GoDaddy makes from hosting and what % of that hosting is WP-powered, you pretty quickly see that GoDaddy, Newfold/Bluehost, Siteground, Hostinger, and WP Engine make more than .com from WordPress hosting.,&#8221; Mullenweg said. &#8220;You can check out those companies on the&nbsp;<a rel=\"noreferrer noopener\" href=\"https://wordpress.org/five-for-the-future/pledges/?order=hours\" target=\"_blank\">five for the future page</a>.&#8221;</p>\n\n\n\n<p>Mullenweg has <a href=\"https://wptavern.com/matt-mullenweg-identifies-godaddy-as-a-parasitic-company-and-an-existential-threat-to-wordpress-future\">previously criticized large hosting companies</a> for what he perceives to be a lack of support for the open source WordPress and WooCommerce projects in proportion to how much they benefit from the use of these platforms. His comments in Post Status yesterday indicate that while he is still unsatisfied with their core contributions, he acknowledges these companies as important to WordPress&#8217; overall growth.</p>\n\n\n\n<p>&#8220;By the way, despite not looking great for core contributions, I think each of those companies has been&nbsp;<em>essential</em>&nbsp;for the growth of WordPress, and particularly the work they invest into upgrade PHP, MySQL, core auto-updates, plugin auto-updates, and security are crucial for the health of our ecosystem,&#8221; Mullenweg said.  </p>\n\n\n\n<p>&#8220;It&#8217;s &#8216;cynically cool&#8217; to hate on some of the bigger ones, but it&#8217;s a free and open market, none of their WP users are locked in and could easily switch to other hosts if they weren&#8217;t happy with the price and value they were getting. In fact by that measure, you could argue they&#8217;ve all done a much better job than .com at connecting with customers. Maybe I spend too much of .com&#8217;s engineering and investment on things like 2fa/passkeys, reader/notifications, stats, the mobile apps, Gutenberg, and Calypso and not enough on marketing or paying off affiliate host review sites.&#8221;</p>\n\n\n\n<h3 class=\"wp-block-heading\">The Damaging Community Impact of Public Confrontations</h3>\n\n\n\n<p>Mullenweg continued to be active on Post Status Slack and X (Twitter) throughout the day, attempting to <a href=\"https://twitter.com/photomatt/status/1702341579850055809\">debunk claims</a> that Automattic is exploiting open source contributors for profit. These interactions included <a href=\"https://twitter.com/photomatt/status/1702403896562352285\">personal attacks</a> which followed after Mullenweg blocked WordPress Marketing Team co-rep Sé Reed who <a href=\"https://twitter.com/sereedmedia/status/1702032589287211305\">claimed</a> that he is standing in the way of contributors improving the open source project and that he was &#8220;vilifying, dismissing, and insulting&#8221; the WordPress community. </p>\n\n\n\n<p>Some perceived him blocking Reed as him shutting down criticism, despite the fact that he said this is the first person he has ever blocked on Twitter. Although her comments were tangential to the original issue (the impact of the WordPress.com plugin listings), they became a focal point after Mullenweg lashed out at developer and product owner Dan Cameron who accused him of &#8220;actively doing more harm than good.&#8221;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Dan, you\'ve built the Search Everything plugin which was popular early on, at some point got sold to Zemanta and abandoned. Hasn\'t been updated in 6 years.<br /><br />You did \"Smart eCart\" for five years which lost to WP-eCommerce and Woo.<br /><br />You did Sprout Apps / Invoices which has 2k…</p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1702403896562352285?ref_src=twsrc%5Etfw\">September 14, 2023</a></blockquote>\n</div>\n\n\n\n<p>I reached out to Automattic-sponsored WordPress Executive Director Josepha Haden-Chomphosy who said she did not have additional comments about what has happened with the recent confrontational exchanges, nor the impact on the community. </p>\n\n\n\n<p>&#8220;I find it kinda refreshing to see Matt throw an elbow or two and stick up for himself,&#8221; WP All Import Product Manager Joe Guilmette said in Post Status Slack.</p>\n\n\n\n<p>&#8220;It’s not the greatest look, but that’s for his PR people to sort out. I don’t have any idea how I’d handle being criticized so heavily for years by the people who built businesses and careers on a project that I helped bring in to the world, but it probably would be a lot worse than calling a few people out on Twitter.&#8221;</p>\n\n\n\n<p>Others who gathered in various Slack instances, watching things play out on Twitter, felt collectively traumatized by witnessing the interactions between Mullenweg and different community members.</p>\n\n\n\n<p>&#8220;I think Matt did way more damage this time than ever before,&#8221; one prominent WordPress consultant said, requesting to remain anonymous.  &#8220;It generated good but quite wearied and sad expressions of grief and anguish in my company Slack and no doubt many others.</p>\n\n\n\n<p>&#8220;The instantly and deeply (however crudely researched) personal nature of Matt’s attacks leads people to paranoid fears that he has a shitlist of enemies who are just regular people, not giant companies etc. It’s a fearsome kind of punching down where the community gets stuck in the psychological position of the children of an abusive parent. Different personalities and different perspectives based on our own experiences lead us to different coping responses. But it’s very ugly now to have the paranoia confirmed as Matt basically taunted the fact that he feeds on what he’s told second or third hand about things others say about him in private.&#8221;</p>\n\n\n\n<p>Matt Cromwell, Senior Director of Customer Experience at StellarWP, said that discussions that start and stay on X/Twitter generally have very little fruit, especially when resolving something as complicated as the WordPress.com plugins SEO issue. </p>\n\n\n\n<p>&#8220;The community keeps leaning on this platform for these discussions but things like the impact of duplicate content on two sites both called &#8216;WordPress&#8217; requires more nuanced and trusting conversations which Twitter can&#8217;t provide,&#8221; Cromwell said. </p>\n\n\n\n<p>&#8220;Mullenweg used the whole thing as an excuse to make so many of the plugin owners that drive WP adoption feel small. It was extremely hurtful to the trust product owners put into the leadership of the WP project. I expect to see more product owners prefer to build SaaS integrations with WP rather than dedicated products because they don&#8217;t trust that Mullenweg has their mutual interest in mind at all anymore – and I don&#8217;t see a way for him to ever put that genie back in the bottle after this behavior both on Twitter and in Post Status Slack.&#8221;</p>\n\n\n\n<p>WordPress developer and contributor Alex Standiford said Mullenweg&#8217;s public confrontations yesterday are &#8220;a bad look for WordPress, and deflate the passionate contributors who genuinely believe in WordPress.&#8221; Despite recent events, he continues to believe in the larger impact of people building open source software together.</p>\n\n\n\n<p>&#8220;I believe that WordPress isn&#8217;t software,&#8221; Standiford <a href=\"https://alexstandiford.com/micro/2294\">wrote on his blog</a>. &#8220;It&#8217;s not community. It&#8217;s not a single person, no matter how significant that person thinks they are. I believe that WordPress is the manifestation of a belief that the web is at its best when it&#8217;s open. If I genuinely believed that forking WordPress would be good for WordPress, and the web, I&#8217;d contribute to it over the existing platform in a heartbeat.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Sep 2023 21:34:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:4:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Post Status: Community Summit Recaps, Multilingual Documentation, Performant Translations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://poststatus.com/community-summit-recaps-multilingual-documentation-performant-translations/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://poststatus.com/community-summit-recaps-multilingual-documentation-performant-translations/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Sep 2023 19:00:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"Post Status: Accessibility in Site Editor, Openverse Wins an Award, What’s New for Devs in WP 6.4, Fields API Summary\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=154835\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://poststatus.com/openverse-wins-an-award-whats-new-for-devs-in-wp-6-4-fields-api-summary/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18820:\"<h2 class=\"wp-block-heading alignfull\" id=\"h-this-week-at-wordpress-org-september-11-2023\">This Week at WordPress.org (September 11, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Openverse Wins the 2023 OEG Open Infrastructure Award. Get a sneak peek into the exciting developments for developers in the upcoming WordPress 6.4 release. </p></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n<div class=\"gb-container gb-container-5e804289\">\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n</div>\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/09/openverse-wins-the-2023-oeg-open-infrastructure-award/\">Openverse Wins the 2023 OEG Open Infrastructure Award</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community-summit-notes\"><a href=\"https://make.wordpress.org/summit\">Community Summit Notes</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/summit/2023/09/15/community-summit-discussion-notes-increasing-contributor-recognition-and-celebration/\">Community Summit Discussion Notes: Increasing contributor recognition and celebration</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/09/06/community-summit-discussion-notes-iterating-on-the-team-rep-role/\">Community Summit Discussion Notes: Iterating on the Team Rep role</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/09/04/community-summit-discussion-notes-open-source-participation-in-global-legislation/\">Community Summit Discussion Notes: Open Source participation in global legislation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/09/03/community-summit-discussion-notes-communication-and-collaboration-finding-your-way-around-wordpress/\">Community Summit Discussion Notes: Communication and Collaboration – Finding Your Way Around WordPress</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-2 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/14/hallway-hangout-whats-new-for-developers-in-wordpress-6-4/\">Hallway Hangout: What’s new for developers in WordPress 6.4</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-5 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/09/14/xpost-hallway-hangout-lets-chat-about-improving-accessibility-in-the-site-editor/\">X-post: Hallway Hangout: Let’s chat about improving accessibility in the Site Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/accessibility/2023/09/13/accessibility-team-meeting-agenda-september-15-2023/\">Accessibility Team Meeting Agenda: September 15, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/accessibility/2023/09/13/accessibility-office-hours/\">Accessibility office hours</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/09/13/report-wpdiversity-inclusion-and-diverse-speaker-workshops-july-to-august-2023/\">Report: #WPDiversity Inclusion and Diverse Speaker Workshops July to August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/09/11/report-wpdiversity-inclusion-workshops-april-to-june-2023/\">Report: #WPDiversity Inclusion Workshops April to June 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/09/07/resource-and-handbook-updates-in-q3/\">Resource and Handbook Updates in Q3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/09/06/community-team-meeting-agenda-for-7-september-2023/\">Community Team Meeting Agenda for 7 September, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/14/hallway-hangout-whats-new-for-developers-in-wordpress-6-4/\">Hallway Hangout: What’s new for developers in WordPress 6.4</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/09/understanding-block-attributes/\">Understanding block attributes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/09/whats-new-for-developers-september-2023/\">What’s new for developers? (September 2023)</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/14/fields-api-progress-summary-wcus-contributor-day-2023-2/\">Fields API Chat Summary: September 13, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/12/default-theme-chat-agenda-september-13th-2023/\">Default Theme Chat Agenda: September 13th, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/12/dev-chat-agenda-september-13-2023/\">Dev Chat agenda, September 13, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/12/dev-chat-summary-september-06-2023/\">Dev Chat Summary, September 06, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/12/editor-chat-agenda-september-13th-2023/\">Editor Chat Agenda: September 13th 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/08/28/design-share-aug-14-aug-25/\">Design Share: Aug 14-Aug 25</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/18/design-specific-triage/\">Bringing Back the Weekly Design Triage</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/09/11/documentation-team-update-september-11-2023/\">Documentation Team Update – September 11, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/23/introducing-the-wordpress-org-github-invite-tool/\">Introducing the WordPress.org GitHub Invite tool</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/09/15/openverse-2024-planning-we-want-your-ideas/\">Openverse 2024 Planning: We Want Your Ideas!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/09/13/openverse-wins-open-infrastructure-award-from-oe-global/\">Openverse wins Open Infrastructure award from OE Global</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/09/12/community-meeting-recap-2023-09-12/\">Community Meeting Recap (2023-09-12)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/12/performance-chat-summary-12-september-2023/\">Performance Chat Summary: 12 September 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-photos\"><a href=\"https://make.wordpress.org/photos\">Photos</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/photos/2023/08/28/august-photo-directory-update/\">August Photo Directory Update</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/08/21/xpost-wordpresscs-3-0-0-is-now-available/\">WordPressCS 3.0.0 is now available</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/09/13/agenda-weekly-polyglots-chat-september-13-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – September 13, 2023 (13:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/09/06/documentation-translation-localization/\">Proposal: Documentation translation/localization</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/09/agenda-for-september-14th-support-meeting-2/\">Agenda for September 14th Support Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/08/proposal-for-updated-support-guidelines/\">Proposal for updated support guidelines</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/09/15/sustainability-chat-summary-september-15-2023/\">Sustainability Chat Summary, September 15, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/sustainability/2023/09/13/sustainability-team-in-the-wordpress-community-summit-2023/\">Sustainability Team in the WordPress Community Summit 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/09/14/hallway-hangout-lets-chat-about-improving-accessibility-in-the-site-editor/\">Hallway Hangout: Let’s chat about improving accessibility in the Site Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/09/13/hallway-hangout-lets-chat-about-the-wordpress-6-4-evolving-the-fse-outreach-program/\">Hallway Hangout: Let’s chat about the WordPress 6.4 &amp; Evolving the FSE Outreach Program</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/09/11/test-team-update-11-september-2023/\">Test Team Update: 11 September 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/09/13/themes-team-meeting-notes-september-12-2023/\">Themes Team Meeting Notes –&nbsp;September 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/09/13/themes-team-update-september-13-2023/\">Themes team update September 13, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/09/11/training-team-meeting-recap-5th-september-2023/\">Training Team Meeting Recap – 5th September 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/09/05/wordcamp-us-2023-contributor-day-recap/\">WordCamp US 2023 Contributor Day Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/09/05/lets-share-our-notes-from-the-community-summit/\">Let’s share our notes from the Community Summit</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/24/information-sources-for-wordpress-6-4/\">Information Sources for WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/24/looking-for-feedback-learning-pathway-outlines/\">Looking for feedback: Learning pathway outlines</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/the-wordpress-database/\">The WordPress Database</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/creating-your-own-custom-synced-or-non-synced-patterns/\">Creating your own custom synced or non-synced patterns</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/scheduling-posts-and-pages/\">Scheduling posts and pages</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=common-apis-options\">Common APIs – Options</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-whats-new-for-developers-in-wordpress-6-4\">Hallway Hangout: What’s new for developers in WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-http-request-api\">Common WordPress APIs – HTTP Request API</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=apac-creating-custom-patterns-synced-or-non-synced\">APAC: Creating custom patterns: synced or non-synced</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=creating-custom-patterns-synced-or-non-synced\">Creating custom patterns: synced or non-synced</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=getting-started-with-a-wordpress-org-account-4\">Getting Started with a WordPress.org Account</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=getting-started-with-a-wordpress-org-account-3\">Getting Started with a WordPress.org Account</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-contribute-to-wordpress-by-just-being-helpful\">How to contribute to WordPress by just being helpful</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/wordpress-community-team-supporter-basics/\">WordPress Community Team Supporter Basics</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/08/28/jquery-3-7-1-released-reliable-table-row-dimensions/\">jQuery 3.7.1 Released: Reliable Table Row Dimensions</a></li>\n\n\n\n<li><a href=\"https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V20.md#20.6.1\">Node v20.6.1released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-09-14-1\">PHP 8.3.0 RC 2 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-08-31-2\">PHP 8.2.10 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-08-31-3\">PHP 8.1.23 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.1\">PHPMailer 6.8.1</a></li>\n\n\n\n<li><a href=\"https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-35.html\">Changes in MySQL 8.0.35 (Not yet released, General Availability)</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases\">Composer <a href=\"https://github.com/composer/composer/releases/tag/2.6.3\">2.6.3</a></a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong>   <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and your whole team can <a href=\"https://poststatus.com/join/\">join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Sep 2023 18:54:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"Do The Woo Community: WooBits, the First Look into the Do the Woo Network and WooSesh is Live\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76541\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://dothewoo.io/first-look-at-do-the-woo-network-and-woosesh/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:428:\"<p>This week I focus on giving you a bit more news around our new Do the Woo network and our partnership with WooSesh.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/first-look-at-do-the-woo-network-and-woosesh/\">WooBits, the First Look into the Do the Woo Network and WooSesh is Live</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Sep 2023 14:00:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: WooSesh 2023 Publishes Speaker Lineup, Launches Seshies Awards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148773\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/woosesh-2023-publishes-speaker-lineup-launches-seshies-awards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2446:\"<p><a href=\"https://woosesh.com/\">WooSesh 2023</a>, the virtual conference for WooCommerce store builders, will be broadcast live on October 10-12. This year&#8217;s theme is &#8220;Next Generation Commerce.&#8221; Registration is not yet open, but the speaker lineup and broadcast schedule have just been published. Over the course of three days, WooSesh will feature 31 speakers across 23 sessions.</p>\n\n\n\n<p>The event will kick off with the State of the Woo address, delivered by WooCommerce CEO Paul Maiorana and other product leaders from the company. Speakers will cover a wide range of topics like complexities of sales tax and product taxability, accessibility, block themes, security, AI tools, and automation, with case studies and workshops mixed in.</p>\n\n\n\n<h2 class=\"wp-block-heading\">New in 2023: The Seshies</h2>\n\n\n\n<p>WooSesh organizer Brian Richards is launching &#8220;<a href=\"https://woosesh.com/seshies\">The Seshies</a>&#8221; this year, a community awards ceremony that will recognize the best examples of the WooCommerce ecosystem across six categories: Innovation, Store, Extension, Agency, Developer, and Community Advocate.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1414\" height=\"596\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-14-at-11.00.46-PM.png\" alt=\"\" class=\"wp-image-148855\" />\n\n\n\n<p><br />The Seshies will include a community awards ceremony that will celebrate the winners. Anyone can <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSfobtJGqOszioOSTM4IMkdDbiIi44OhTZgFg1PXidnwWksEsQ/viewform\">nominate</a> candidates for the awards, and participants can even nominate themselves and their own WooCommerce projects. </p>\n\n\n\n<p>&#8220;These awards are something that have been on my heart for quite some time,&#8221; Richards said. &#8220;And now, after 6 years of hosting WooSesh and 10 years of running WPSessions, I think I&#8217;ve amassed enough authority and (critically) a wide enough reach to deliver awards, on your behalf, that have real meaning.&#8221;</p>\n\n\n\n<p>The week before the event, Richards plans to publish the top three nominees in each category. The community will vote throughout the first two days of WooSesh and the winners will be announced on the final day. Winners will receive a digital badge of recognition and Richards said he is also working on producing physical awards to ship to winners anywhere in the world.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 15 Sep 2023 03:34:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: ActivityPub 1.0.0 Released, Introducing Blog-Wide Accounts and New Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148817\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/activitypub-1-0-0-released-introducing-blog-wide-accounts-and-new-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3149:\"<p>Version 1.0.0 of the <a href=\"https://wordpress.org/plugins/activitypub/\">ActivityPub plugin</a> was released this week with major updates that make it possible to have a blog-wide account, instead of just individual author accounts, where followers receive updates from all authors. This new feature allows people to follow blogs on decentralized platforms like Mastodon (and many others) with replies automatically published back to the blog as comments. </p>\n\n\n\n<p>In the ActivityPub plugin settings, users can check &#8220;Enable blog&#8221; to have the blog become an ActivityPub profile. Authors can be enabled at the same time as a blog-wide profile.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1662\" height=\"914\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-14-at-3.15.41-PM.png\" alt=\"\" class=\"wp-image-148831\" />\n\n\n\n<p>Activities originating from a Blog profile can be further customized through the existing post content and image settings. Users can also set the activity object type to default, article, or WordPress post format which maps the post format to the ActivityPub object type. Supported post types include posts, pages, and media. Note that the blog-wide profile only works with sites that have rewrite rules enabled. </p>\n\n\n\n<img width=\"1590\" height=\"920\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-14-at-3.33.58-PM.png\" alt=\"\" class=\"wp-image-148832\" />\n\n\n\n<p>An experimental hashtags setting is also available, which adds hashtags in the content as native tags and replaces the #tag with the tag link. Users should be aware that it may still produce HTML or CSS errors.</p>\n\n\n\n<p>ActivityPub 1.0.0 introduces two new blocks &#8211; one for displaying Fediverse Followers and the other for displaying a &#8220;Follow&#8221; button to allow people to follow the blog or author on the Fediverse. The Follower system has also gotten a complete rewrite based on Custom Post Types.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1096\" height=\"782\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-14-at-3.57.41-PM.png\" alt=\"\" class=\"wp-image-148835\" />\n\n\n\n<p>Other notable updates in this release include the following: </p>\n\n\n\n<ul>\n<li>Signature Verification: https://docs.joinmastodon.org/spec/security/</li>\n\n\n\n<li>Simple caching</li>\n\n\n\n<li>Collection endpoints for Featured Tags and Featured Posts</li>\n\n\n\n<li>Better handling of Hashtags in mobile apps</li>\n\n\n\n<li>Update: Improved linter (PHPCS)</li>\n\n\n\n<li>Fixed: Load the plugin later in the WordPress code lifecycle to avoid errors in some requests</li>\n\n\n\n<li>Fixed: Updating posts</li>\n\n\n\n<li>Fixed: Hashtag now support CamelCase and UTF-8</li>\n</ul>\n\n\n\n<p>Automattic acquired the plugin in March 2023 from German developer <a href=\"https://profiles.wordpress.org/pfefferle/\">Matthias Pfefferle</a>, who joined the company to continue improving support for federated platforms. Next on the roadmap for the ActivityPub plugin is threaded comments support and replacing shortcodes with blocks for layout.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Sep 2023 22:43:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WordPress.org blog: Openverse Wins the 2023 OEG Open Infrastructure Award\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15967\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wordpress.org/news/2023/09/openverse-wins-the-2023-oeg-open-infrastructure-award/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2336:\"<img width=\"1800\" height=\"1013\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/09/openverse-image.png?resize=1800%2C1013&ssl=1\" alt=\"\" class=\"wp-image-15959\" />\n\n\n\n<p>WordPress is excited to announce that <a href=\"https://openverse.org/\">Openverse</a> has been awarded the <a href=\"https://awards.oeglobal.org/awards/2023/open-infrastructure/openverse/\"><strong>2023 Open Education Award for Excellence</strong></a> in the <strong>Open Infrastructure</strong> category!</p>\n\n\n\n<p>The Open Education Awards for Excellence, organized by the non-profit organization <a href=\"https://www.oeglobal.org/\">Open Education Global (OEG)</a>, celebrate people, resources, and initiatives that have significantly contributed to the open education field and community. This year, they received 172 nominations across 16 award categories, representing individuals and projects from 38 countries.</p>\n\n\n\n<p>This award honors Openverse&#8217;s work to make it easy for everyone to discover and use open educational resources. The award reviewers were particularly impressed by <strong>Openverse&#8217;s <a href=\"https://twitter.com/WordPress/status/1514349743144685577\">one-click attribution feature</a></strong>. Moreover, they highlighted the tool’s ability to filter searches by source collections and other parameters, such as image orientation and specific license, which they noted “provides seekers of open content important affordances to find clearly licensed media they can reuse.”&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><em>“This is an exceptional search engine for the open education community. The one click attribution copy for images makes attribution very straight-forward and easy, even for novice users. The design is excellent; the results are returned fast.”</em> </p>\n<cite>Award reviewer for the 2023 OEG Award for Open Infrastructure </cite></blockquote>\n\n\n\n<p>This recognition not only underscores Openverse and WordPress&#8217;s commitment to open content but also celebrates the work of their dedicated contributors, community, and partners in advancing open education and creative works.</p>\n\n\n\n<p><a href=\"https://awards.oeglobal.org/awards/2023/open-infrastructure/openverse/\">Learn more about this Openverse award on the OEG page</a>.</p>\n\n\n\n<p><strong>Congratulations, Openverse!</strong></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Sep 2023 18:04:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Madison Swain-Bowden\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Do The Woo Community: Always Practicing and Learning with Artemy Kaydash\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76517\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://dothewoo.io/always-practicing-and-learning-with-artemy-kaydash/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:418:\"<p>Backend WordPress and WooCommerce developer, Artemy Kaydash, shares his dev story and the importance of always learning.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/always-practicing-and-learning-with-artemy-kaydash/\">Always Practicing and Learning with Artemy Kaydash</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Sep 2023 13:05:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Do The Woo Community: A WCUS Recap with Topher DeRosia, Raquel Manriquez and Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76507\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://dothewoo.io/wcus-2023-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:363:\"<p>Our final recap of WordCamp US with Topher DeRosia, Raquel Manriquez and Cory Miller</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wcus-2023-recap/\">A WCUS Recap with Topher DeRosia, Raquel Manriquez and Cory Miller</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Sep 2023 07:15:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"WPTavern: Developers Raise Concerns About WordPress.com Plugin Listings Outranking WordPress.org on Google Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148759\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://wptavern.com/developers-raise-concerns-about-wordpress-com-plugin-listings-outranking-wordpress-org-on-google\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12039:\"<p>WordPress core developer John Blackbourn sparked a heated discussion yesterday when he posted an image of his WordPress User Switching plugin ranking higher for the WordPress.com listing than the page on WordPress.org.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Why has <a href=\"https://twitter.com/wordpressdotcom?ref_src=twsrc%5Etfw\">@wordpressdotcom</a> replicated the entire <a href=\"https://t.co/oTA9NDVkFk\">https://t.co/oTA9NDVkFk</a> plugin directory on its .com domain name? Searching for some plugin names now results in the .com page ranking higher than .org. Fuck the long term health of the FOSS project, let\'s make some money, right? <a href=\"https://t.co/UD40BN3Z6g\">pic.twitter.com/UD40BN3Z6g</a></p>&mdash; John Blackbourn (@johnbillion) <a href=\"https://twitter.com/johnbillion/status/1701765939534893475?ref_src=twsrc%5Etfw\">September 13, 2023</a></blockquote>\n</div>\n\n\n\n<p>Blackbourn later apologized for the inflammatory wording of the original post, but maintains that .com plugin listings being displayed higher in search results is not healthy for the open source project.</p>\n\n\n\n<p>&#8220;This was a frustrated 2AM tweet so I could have worded it better, but the point still stands,&#8221; he said. &#8220;The plugin pages on dotcom are little more than marketing landing pages for the dotcom service and they&#8217;re strongly competing with the canonical dotorg pages. That&#8217;s not healthy.&#8221;</p>\n\n\n\n<p>Several others <a href=\"https://twitter.com/konstruktors/status/1701851307454185628\">commented</a> about having <a href=\"https://poststatus.slack.com/archives/CHNM7Q7T8/p1693475484734239\">similar experiences</a> when searching for plugins, finding that the WordPress.com often ranks higher, although many others still see WordPress.org pages ranked highest. </p>\n\n\n\n<p>Blackbourn <a href=\"https://twitter.com/johnbillion/status/1702035969237504140\">said</a> his chief concern &#8220;is the process that introduced the directory clone on .com either disregarded its potential impact on .org in favor of inbounds or never considered it in the first place &#8211; both very concerning given the ranking power of .com.&#8221;</p>\n\n\n\n<p>The tweet highlighted the frustration some members of the open source community feel due to the perennial branding confusion between WordPress.com and WordPress.org. Nothing short of renaming WordPress.com will eliminate the longstanding confusion, but this is unlikely as Automattic benefits from tightly coupling its products to WordPress’ name recognition.</p>\n\n\n\n<p>&#8220;Duplicate content confuses the human + search engines,&#8221; SEO consultant Rebecca Gill <a href=\"https://twitter.com/rebeccagill/status/1702022257533493726\">said</a>. &#8220;Search engines won&#8217;t like it, nor will humans trying to find solutions to their problems. There is already enough confusion w/ .org + .com for non-tech folks. This amplifies it. Noindex .com content or canonical it to .org.&#8221;</p>\n\n\n\n<p>Participants in the discussion maintain that the duplication of the open source project&#8217;s plugin directory &#8220;<a href=\"https://twitter.com/pedro_gaspar/status/1701907080997707966\">creates ambiguity and confusion</a>&#8221; but WordPress co-creator and Automattic CEO Matt Mullenweg contends it also gives plugin authors greater distribution.</p>\n\n\n\n<p>&#8220;It&#8217;s providing distribution to the plugin authors, literally millions and millions of installs,&#8221; Mullenweg <a href=\"https://twitter.com/photomatt/status/1701973661110915205\">said</a>. He elaborated on how the cloned plugin directory is integrated with Calypso, WordPress.com&#8217;s admin interface:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>.com has its own plugin directory which includes the .org one, it provides more installs and distribution to the plugin authors, which helps their usage and for commercial ones gets them more sales. The plugins are not altered. .com takes no cut for the distribution.</p>\n</blockquote>\n\n\n\n<p>When participants in the discussion suggested that other hosts doing the same thing would create a wild west situation for plugin rankings, Mullenweg said he would not mind if the plugins were &#8220;duplicated and distributed by every host and site on the planet,&#8221; as they are all licensed under the GPL.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">If people are providing more distribution to unaltered plugins, I think that\'s great. Happy for all our plugins to be duplicated and distributed by every host and site on the planet.</p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1701983671832441290?ref_src=twsrc%5Etfw\">September 13, 2023</a></blockquote>\n</div>\n\n\n\n<p>Outrage against distributing WordPress.org plugins in this fashion was not universal in the discussion. A few commenters support this strategy and see it as beneficial for the long-term health of the open source project.</p>\n\n\n\n<p>&#8220;I&#8217;m all for it to be honest,&#8221; WordPress developer Cristian Raiber <a href=\"https://twitter.com/CristianRaiber/status/1701993257717096738\">said</a>. &#8220;Anyone could scrape those pages but not everyone gives back to WordPress and makes sure it&#8217;s here to stay for the next decades. Controversial, I know. But I prefer we build together instead of alone.</p>\n\n\n\n<p>&#8220;I fail to see how this is not an advantage to anyone who hosts their plugins (for FREE) on w[dot]org ?&#8221; Raiber continued in a separate <a href=\"https://twitter.com/CristianRaiber/status/1701991457412767913\">response</a>. &#8220;Is it about being outranked in Google&#8217;s SERPs for brand kws? Why has this generated so much outcry when the intent is clearly beneficial?</p>\n\n\n\n<p>&#8220;This FINALLY solves a friction point for potential buyers. Streamlined plugin installation and usage vs &#8216;here&#8217;s a list of 55 steps you have to take to install my plugin.&#8217; Users want options, different uses cases and all. I want <a rel=\"noreferrer noopener\" href=\"https://t.co/lvD51DFwBI\" target=\"_blank\">wp.com</a> to make money so they keep growing this product.&#8221;</p>\n\n\n\n<p>XWP Director of Engineering Francesca Marano suggested that WordPress.com has benefitted from the branding and reputation of .org, which is built by volunteers. She also <a href=\"https://twitter.com/FrancescaMarano/status/1701928039599219066\">proposed</a> that Automattic &#8220;has the resources to do a whole rebranding which would ultimately benefit both projects.&#8221;</p>\n\n\n\n<p>Mullenweg <a href=\"https://twitter.com/photomatt/status/1701978533239640196\">responded</a> to these comments, defending WordPress.com&#8217;s efforts in fending off early WordPress competitors and cited Automattic&#8217;s preeminence in contributing back to core, despite taking in less revenue than some larger companies making money from the software:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Since its foundation, .org has benefitted from the branding and reputation of having a robust SaaS version available from .com, including a free version, something basically no other host does. Over 200M people have used it, and countless started on .com and then migrated to another host. The shared branding made it very difficult for services like Typepad to compete. You want to see what WP would look like without it? Go to Joomla. </p>\n\n\n\n<p>.com has also been the source of countless performance improvements, we deploy pre-release versions of core to millions of sites to find bugs and do testing, making WP releases way more stable for regular users and hosts. <strong><em>No company contributes more, even though many make more from WP than .com&#8217;s revenue.</em></strong> It would have been way easier to fork the software, not merge MU. Most hosts (and many community members) bad-mouth .com while not contributing a fraction back to core. Hosts spend tens of millions a year on ads against .com. I get attacked constantly.</p>\n</blockquote>\n\n\n\n<p>In 2010, when the WordPress Foundation was created, <a href=\"https://wordpress.org/book/2015/11/the-wordpress-foundation/#:~:text=Automattic%20had%20always%20intended%20to,company\'s%20investors%20at%20the%20outset.\">Automattic transferred the WordPress trademarks to the Foundation</a>, after having been the temporary custodian of the trademarks until that time. As part of the transfer, the Foundation granted Mullenweg use of the WordPress trademark for WordPress.com.</p>\n\n\n\n<p>This trademark was deliberately secured, and the company does not appear to be open to renaming the platform. This doesn&#8217;t mean WordPress.com can&#8217;t do anything to mitigate the confusion that scraping the WordPress.org plugin directory creates. Participants in the discussion suggested that WordPress.com forego indexing the pages they created for plugins that developers submitted to the open source project.</p>\n\n\n\n<p>&#8220;You can control SEO by telling search engines to not index those pages of open source software developed for .org on the .com domain,&#8221; WordPress plugin developer Marco Almeida <a href=\"https://twitter.com/Wonderm00n/status/1701905853165551802\">said</a>.</p>\n\n\n\n<p>&#8220;I have 20 free plugins on the repository and I don&#8217;t see how my plugins will benefit if we open this pandora box and normalize cloning these pages and diluting the WordPress.org importance on search engines.&#8221;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Dotcom can help by using schema markup that points to dotorg as the authority (using the \"about\" and/or \"sameAs\" properties). The dotorg pages already have the schema markup in place, you\'ll just need to point to it from dotcom.<br /><br />This is helpful for dotcom too. Although Google…</p>&mdash; Jeff Matson <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f47e.png\" alt=\"?\" class=\"wp-smiley\" /> (@TheJeffMatson) <a href=\"https://twitter.com/TheJeffMatson/status/1701935427672764641?ref_src=twsrc%5Etfw\">September 13, 2023</a></blockquote>\n</div>\n\n\n\n<p>Developers who are just now discovering their WordPress.org plugins cloned to WordPress.com listings are also wanting to know how many of their installs come from WordPress.com so they can better understand their user bases. Mullenweg <a href=\"https://twitter.com/photomatt/status/1702001800520343848\">suggested</a> developers who want a different listing for WordPress.com users can <a href=\"https://developer.wordpress.com/wordpress-com-marketplace/\">sign up for the .com marketplace</a>.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">well, this could be true, but as plugin author I don’t know how many installations are on .com or .org, or how to show the plugin description/features in a different way to a .com user. I think that the main issue here is the directory cloning</p>&mdash; Simone Maranzana (@simo_m) <a href=\"https://twitter.com/simo_m/status/1701996397338190088?ref_src=twsrc%5Etfw\">September 13, 2023</a></blockquote>\n</div>\n\n\n\n<p>Tensions remained high as the heated discussion continued throughout the day and into the evening with criticism flowing across X (Twitter), Post Status Slack, and other social channels, as many developers learned for the first time that their plugin listings have been cloned on WordPress.com.  As long as a commercial entity shares the open source project&#8217;s branding, these types of clashes and friction will continue popping up.</p>\n\n\n\n<p>&#8220;Personally, I can’t help but empathize with plugin authors that chose to support OSS and find the directory cloned in a commercial service, albeit free, with no access to stats,&#8221; Francesca Marano <a href=\"https://twitter.com/FrancescaMarano/status/1702001376442700283\">said</a>. &#8220;As I mentioned before, the main issue is the confusion around the two projects.&#8221; </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Sep 2023 04:05:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Akismet: Version 5.3 of the Akismet WordPress plugin is now available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=281046\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://akismet.com/blog/version-5-3-of-the-akismet-wordpress-plugin-is-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1120:\"<p>Version 5.3 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n\n\n\n<p>The updated plugin has new easy-to-read notices. These are the messages shown when Akismet is successfully set up or there is an issue with your install.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/09/image.png?w=1024\" alt=\"\" class=\"wp-image-281050\" />\n\n\n\n<p>We have improved support for RTL (right-to-left) languages like Hebrew and Arabic, and have made some accessibility improvements to help users enter their API key more easily. </p>\n\n\n\n<p>Users of the <a href=\"https://fluentforms.com/\">Fluent Forms</a> plugin will be pleased to know that the latest version of Akismet is now compatible with <a href=\"https://fluentforms.com/fluent-forms-5-0/\">Fluent Forms v5</a> and above.</p>\n\n\n\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Sep 2023 21:00:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Chris Rosser ?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: #90 – Olga Gleckler on How Anyone Can Contribute to the WordPress Project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=148683\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wptavern.com/podcast/90-olga-gleckler-on-how-anyone-can-contribute-to-the-wordpress-project\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:40576:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how you can assist the WordPress project by contributing.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you, and hopefully get you all your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Olga Gleckler. Olga is a self-taught developer with many years of experience. After initially pursuing a career in marketing, she turned back to her passion for programming and became a full-time developer. She has been contributing to WordPress for four years, and is currently serving as the Core triaged lead for version 6.4.</p>\n\n\n\n<p>In addition, Olga is a maintainer for two components in Core, and actively participates in various teams within the WordPress community.</p>\n\n\n\n<p>Outside of work, she&#8217;s also writing a fantasy book, which has a significant personal project for her.</p>\n\n\n\n<p>Olga has tried her hand in various teams within the WordPress community, ranging from Polyglots to Training, Support and more. She challenges the commonly held misconception that only coders can contribute to the WordPress project, highlighting the many different ways individuals can contribute without coding skills.</p>\n\n\n\n<p>During our conversation, Olga shares some examples of non-coding contributions that can be made to the WordPress project. We talk about the process of submitting patches and contributions to WordPress, discussing the schedule for releases, and the importance of understanding the processes and deadlines.</p>\n\n\n\n<p>Olga also emphasizes the essential steps of testing, reviewing for coding standards and ensuring correct documentation in order to make impactful contributions.</p>\n\n\n\n<p>Olga&#8217;s journey and the WordPress community has been very varied. She discusses how being part of this ecosystem has improved her career prospects, and gained her trust from others. However she acknowledges that not everyone finds their place immediately and may struggle to get started.</p>\n\n\n\n<p>She explores how to contribute without becoming discouraged, and shares her experiences in the mentorship program that paired mentors with mentees in navigating the WordPress community.</p>\n\n\n\n<p>Throughout the conversation Olga shows a deep passion for the WordPress project and the collaborative nature of the community. She reminds us that contributing to open source projects requires patience and persistence and shares her insights on learning methods, seeking guidance and asking questions in order to make progress.</p>\n\n\n\n<p>If you&#8217;ve thought about contributing to WordPress, but are not sure where to begin, this episode is for you. If you&#8217;re interested</p>\n\n\n\n<p>in finding out more, you can find all of the links in the show notes by heading over to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Olga Gleckler.</p>\n\n\n\n<p>I am joined on the podcast today by Olga Gleckler. Hello, Olga!</p>\n\n\n\n<p>[00:04:08] <strong>Olga Gleckler:</strong> Hi.</p>\n\n\n\n<p>[00:04:09] <strong>Nathan Wrigley:</strong> Very nice to have you with us. Olga is going to be chatting to us today about contributing to WordPress, probably specifically around WordPress Core, but we will no doubt in the introduction discover that Olga&#8217;s done a lot more in the WordPress space.</p>\n\n\n\n<p>Olga, just before we begin, let&#8217;s orientate our listeners a little bit about you. This is a chance to give us your biography. Tell us who you are, how long you&#8217;ve been working with code and computers and in the WordPress space more specifically. You can go as far back as you like.</p>\n\n\n\n<p>[00:04:43] <strong>Olga Gleckler:</strong> Sounds great. I wanted to be a programmer at school, but I messed up with my education and turned out to be a marketer. Then I was a bit disappointed in marketing because you cannot promise to deliver something and actually deliver it. And I switched back to my previous passion to development, and become a developer like a self taught.</p>\n\n\n\n<p>And already nine years I&#8217;m working full time as a developer. And four years I&#8217;m contributing to WordPress. To find the WordPress community, it was a big discovery for me, and actually turning point for the whole experience, because WordPress is good, is great, and I liked it.</p>\n\n\n\n<p>When I discovered the community, I started to love it. And since Berlin in 2019, I joined marketing team and several other teams. I contributed to polyglots team, to training team, to support, I love support. And some other teams. And right now I am Core triage lead for 6.4. I was Core triage co-lead for 6.3 as well.</p>\n\n\n\n<p>I&#8217;m a maintainer for two components in Core, so I think I know a bit about how you can actually contribute to Core, and I still enjoying all the process.</p>\n\n\n\n<p>Apart from full time job and contribution, I also want to mention that I&#8217;m writing a fantasy book. It&#8217;s like a big deal for me. It&#8217;s a draft, but it&#8217;s another passion I carry on with myself all around the world.</p>\n\n\n\n<p>[00:06:25] <strong>Nathan Wrigley:</strong> That&#8217;s really interesting. So you&#8217;ve been involved in all sorts of different sides of WordPress. You mentioned there specifically that you joined the marketing team, obviously based upon your past history with studying marketing and things like that. But you found that that maybe wasn&#8217;t the best fit for you. And I guess that&#8217;s going to be part of the conversation today, is that there&#8217;s a lot of different places that you can contribute. And if you join a team and it doesn&#8217;t seem to be the right fit first time, that&#8217;s not a reason to give up, because there are just multiple different ways that you can contribute to WordPress, right?</p>\n\n\n\n<p>[00:07:02] <strong>Olga Gleckler:</strong> I love marketing. I cannot kick it out of me, and I still deeply involved in marketing team activities and most of my efforts I am making are between teams. For example, between marketing and mobile team, between marketing and Core team. It&#8217;s something inside me and I cannot kick it out, and I&#8217;m looking at Core tickets from the marketing point of view, and trying to find something significant, something to change, something to improve user experience, to deliver improvement and make a difference and impact.</p>\n\n\n\n<p>So, yes. I joined marketing team first and I&#8217;m still there, part of the marketing team, but I tried different things like in support, in polyglots. They are all very different and very important as well. So I poke around a lot, and finally I pluck up the courage, with help, and starting to contribute to Core team.</p>\n\n\n\n<p>[00:08:06] <strong>Nathan Wrigley:</strong> It sounds like on your journey you have dabbled in, you said, poking around, you&#8217;ve had a go at various different teams and you&#8217;ve obviously enjoyed that. In some of the show notes that you shared with me, you list out some of the different things. So you&#8217;ve been involved in several different teams, for example, polyglots, training, and you mentioned support and TV actually, which is kind of an interesting one.</p>\n\n\n\n<p>That gives us an idea of the different things that you can be involved in. There&#8217;s a whole range there, but I want to drive this message home. The idea that if you&#8217;re in the WordPress community, I think there is a perception that if you don&#8217;t code, you&#8217;re probably not going to be able to contribute. And I think it&#8217;s fair to say that you really don&#8217;t believe that. That&#8217;s just not true. You don&#8217;t have to have any coding skills at all.</p>\n\n\n\n<p>Now, clearly, if you&#8217;re tackling contributions where code is required, that&#8217;s probably different, but there&#8217;s loads of different ways that you can contribute. And I wonder if you wouldn&#8217;t mind just telling us about some of those different things. Some of the things that teach us that you don&#8217;t need to be a coder to contribute to the project.</p>\n\n\n\n<p>[00:09:17] <strong>Olga Gleckler:</strong> For example, Community team. Community team is handling all the organization processes for meetups, WordCamps, other events and supporting people. It&#8217;s a great and a big job for managers. People who are taking care about things. You don&#8217;t need to be a developer at all. You just need to manage things.</p>\n\n\n\n<p>And this is only one team, and we have more than 22 teams. We have security team. It&#8217;s a bit obscure because obvious reasons, but you can contribute to all other teams. For example, if you are teacher, you can contribute to training team. If you are purely WordPress user, you can contribute to a lot of teams.</p>\n\n\n\n<p>For example documentation and checking if things are clear, and documentation is actually following the actual result or not, or something needs to be changed.</p>\n\n\n\n<p>And users, just users without any experience in development can bring a huge value because developers are, we have such flaw because everything is working for us. We know how it should go, and it&#8217;s going in the right direction. And if you don&#8217;t know how it&#8217;s supposed to work, you can poke around a bit and discover some flaws, some doubts, some things which are unclear, and bring a huge value for the code itself.</p>\n\n\n\n<p>And apart from it translation. Polyglot team is your goal if you like to translate. And this is the way to improve your own understanding of English and your own language. Because if you are starting to translate, it&#8217;s become apparent, obvious that it isn&#8217;t easy to do. And you need to put your brain, your heart to this task at hand.</p>\n\n\n\n<p>And support also a good point for people who want to learn. Because if you, for example, can answer like one question from ten, you can make someone else&#8217;s day better.</p>\n\n\n\n<p>And in the process, you can learn more and more, and answer more questions, and improve your own skills this way. Just helping other people. And. This is only few teams you can contribute.</p>\n\n\n\n<p>And also TV. You can edit videos for other people. You can translate and make subtitles for these videos. You can of course review them.</p>\n\n\n\n<p>And the team everyone is just love right now is photo team. You can contribute your photos to photo directory and contribute this way. If you are a photographer you can contribute to WordPress your ideas in pictures. And of course, if you like looking at pictures, you can go and review these contributions. Because there are some rules, for example, people not, should not be present on these images, et cetera. So there are some rules about quality, et cetera.</p>\n\n\n\n<p>So we have a lot more abilities. It&#8217;s just top of things and we have a lot more.</p>\n\n\n\n<p>[00:12:37] <strong>Nathan Wrigley:</strong> There are, from everything you&#8217;ve just said, so many different avenues that you could go down. And I know, even though you gave us quite a list there, you&#8217;ve still probably only scratched the surface, and if you were to get into the weeds of those teams, I&#8217;m sure there&#8217;d be something for everybody.</p>\n\n\n\n<p>I have a question. It&#8217;s a bit of a personal question. And I&#8217;m really wondering why you do this. And the reason I&#8217;m asking that is because a couple of times in what you just said, you mentioned how it was good for your, your heart. If you like, it made you feel better. But also you said that it was helping other people.</p>\n\n\n\n<p>And so let&#8217;s, for example, say that you answer a support ticket, you&#8217;ve helped somebody out. You&#8217;ve taken them from a place of not knowing, to a place of knowing. So, why do you give up your time? What is it that you get out of it? That may be simply that it makes you feel good, you want the project to be better, so that you can be employed from working with WordPress.</p>\n\n\n\n<p>It may be that you just enjoy it, that you get to meet new people, attend events, go in any direction you like. I&#8217;m really curious.</p>\n\n\n\n<p>[00:13:37] <strong>Olga Gleckler:</strong> I think I love everything. I put my trust in WordPress. This is best choice there is. I believe in it, and of course I&#8217;m going to improve, to put back this Five For The Future of myself. To be able to work and use WordPress continuously, and improve it like it&#8217;s obvious choice for people who are working on it. And this is only one way.</p>\n\n\n\n<p>The second, I love all this gathering, all these people with passion. Open minded people and everyone is curious and want to learn and want to do something. And everyone is open and this is a safe environment. We&#8217;re all following code of conduct. So, it&#8217;s completely different space. Open source project. It&#8217;s blow minded. I think how it can change your mind and your perspective.</p>\n\n\n\n<p>And of course I got job proposal, previous one, because people know me in the community. And this one is also partly because what I&#8217;m doing, because I&#8217;m well known, a developer. So I was wondering, where is the technical interview? And I was told that there is no need for you, because we know that you are up to scratch already. So it was a good point.</p>\n\n\n\n<p>So people are amazing. You are improving your skills. You are getting understanding of your level in comparison to other people&#8217;s level. You can learn on their efforts and, for example, patches, examples, documentation, etc. So you are continuously improving yourself. A lot of reasons.</p>\n\n\n\n<p>[00:15:26] <strong>Nathan Wrigley:</strong> Yeah, there are a lot of reasons. Really interesting though. There&#8217;s obviously a lot of desire from you. You obviously enjoy the whole ecosystem and all of the different tendrils and spokes on the wheel. But also interesting to note that you&#8217;ve also done your career prospects no harm by contributing, because you get to the point where you&#8217;ve contributed enough that people are going to start looking for you as somebody that they can trust and rely on. So you kind of jumped over the hurdle of job interviews a little bit there as well. So that&#8217;s really interesting.</p>\n\n\n\n<p>Okay. Let&#8217;s move on to the, another part of the conversation, which is beginning contributing, how you might do that. Because I&#8217;m guessing that for some people, it may be that you hit the ground running and you decide, okay, I&#8217;d like to be part of the contribution community and you find the right project and you find the right thing to do immediately. But I&#8217;m also fairly sure that other people will get discouraged. They&#8217;ll perhaps jump in to the wrong part of the project, or maybe tackle something which is a little bit difficult. They can&#8217;t find the people to help them and so on. So I wonder if you&#8217;ve got any advice about that? Trying to contribute without getting discouraged.</p>\n\n\n\n<p>[00:16:40] <strong>Olga Gleckler:</strong> Firstly, you need to know what is your learning curve, what is best for you. Sometimes it takes some time to figure it out. For example, some people are purely reading documentation and they are fine with it. But some people need video recording, or they need like a leg up from mentor or just little help for like facilitators.</p>\n\n\n\n<p>And we are trying to provide all this to make it really easy. Right now, there is a barrier, yeah. But if you want to start to contribute to Core, for example, you need to go to new contributor chat. This is like bi-weekly meeting before the main dev chat. And it&#8217;s better to ask questions. For example, we are like going through the usual script, we are highlighting several documents and links you&#8217;re supposed to browse, but you can be stuck at any moment and actually these meetings are for providing help and we are there.</p>\n\n\n\n<p>I&#8217;m mostly present there to help if people are stuck. And you need to understand that asking questions, it&#8217;s normal state for everyone. We all are continuously asking questions, and there is no stupid questions, because everyone knows that sometimes it&#8217;s hard to begin. Or even you can miss something obvious, even if you are the smartest person in the world, you can miss something obvious, because it&#8217;s obvious for someone else.</p>\n\n\n\n<p>So, this is how you can start. But in addition to this, we started a contribute mentorship channel in the Slack. This is dedicated channel for contributor mentorship program. We just finished first pilot program when we took 13 people and they got their own mentors. But everyone else was hanging around, and facilitators like me was providing help for people and answering questions. Specific questions, like how to start, how to pick up ticket, what I should do etc. And if I am like with such background, what is better fit for me, etc.</p>\n\n\n\n<p>But as well, apart from this, you can just poke around and be present in usual developers chats, but it can take time. So to make things quickly, you need some help from people. And we are actually ready for help. And in the documentation, there is a list of people whom you can ask if you have questions and difficulties. I&#8217;m listed there as well. So people are actually writing for me in DM if they don&#8217;t like comfortable enough to write openly, and asking such questions.</p>\n\n\n\n<p>But if you want your question answered sooner, you can just go to Core channel in the Slack and ask this question openly for everyone to see. And this way you can contribute to other people&#8217;s success as well, because some people not ready to answer this, the same question, and they can see your question and pick up what was written to you. But you don&#8217;t need to jump in the middle of usual, regular chats. You need to wait until open floor if there is like a dev chat going on. So your question can be like, just be flooded with everything else which is happening. Or this is a release going on, no one will be able to answer your questions properly.</p>\n\n\n\n<p>[00:20:27] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s a good point. Timing is crucial. I&#8217;m just going to circle back to the mentorship program because I think that&#8217;s really interesting. So this is a new initiative, and it may be of interest to people who perhaps have thought about contributing, but have been a little bit unwilling or discouraged, or they had some bumps in the road and decided not to continue.</p>\n\n\n\n<p>Can you just tell us what that is, how that process works? And I know it&#8217;s new and I know you&#8217;re trying to figure it all out, but what is it? How does it work? My understanding is that you will be partnered, in certain teams, at least anyway, with people who have done the role that you&#8217;re hoping to do and can therefore sort of shepherd you for a period of weeks. Set the expectations for you, give you some advice about where to go for help and all of that kind of stuff. Have I more or less got that right?</p>\n\n\n\n<p>[00:21:17] <strong>Olga Gleckler:</strong> Yeah, it was a pilot, so we were just trying things. The plan for people was decided, how they can proceed. And we received 50 applications, but was able to take 13 people to partner them with mentors. Mentors were people with wide knowledge inside the community and contribution, but not exactly the match on person&#8217;s interests. This person was providing like general support. And actually it&#8217;s works great.</p>\n\n\n\n<p>They make contribution plans and providing feedback, what&#8217;s working, what is not working. And first two weeks mentees was doing learn courses. And I think 11 of them finished all courses. And then we started sessions, introductory sessions, for many WordPress teams. I had one introduction session for Core. It was also training team, polyglot team, support team, community team, and several other teams.</p>\n\n\n\n<p>So we put a lot of efforts and most of these sessions are recorded, so you can rewatch them. And this was only the first pilot try. So I think the next time we will do better. And we actually scheduled this to be finished next day after release. So our mentees was able to see the whole process of the release alongside with us, and take part in this.</p>\n\n\n\n<p>And several people actually contribute to Core. They made patches, they tested things. From our point of view, it&#8217;s a real success and we provided people ability to start quickly, and when there are dedicated people, it&#8217;s much easier to ask questions and get answers, and be oriented in this huge area. And because this mentees got an overview of the whole project, like general.</p>\n\n\n\n<p>They was easy to understand what will fit them better. If they like Core, or if they want to translate things, or if they are going to support. Actually, I think one guy answered 200 questions on the support, on the spot, yeah. I have much difference in answering questions. It&#8217;s actually takes time, but he went passionate about this, and it&#8217;s great.</p>\n\n\n\n<p>[00:23:43] <strong>Nathan Wrigley:</strong> You mentioned in the shared show notes that we&#8217;ve got together for this podcast episode well, I just think this is a lovely phrase, so I&#8217;m going to read it out. You wanted to talk about setting the right expectations and understanding of processes, and the fact that these are the key points to, this is the bit that I really like, joyful contribution. So I wonder if you could outline some of those things, some of the wrinkles, some of the expectations that you need to, not only have set for you, but need to set yourself. Because it may be that there are going to be bumps in the road, things that don&#8217;t quite work out.</p>\n\n\n\n<p>You may tackle something which ultimately never gets used, or you may think that you&#8217;ve created a solution, I&#8217;m thinking about coding in Core in this particular case, which then has an impact on something else. And so it needs to be iterated on over and over again. So I guess what we&#8217;re trying to say is, it&#8217;s not always going to be plain sailing. Not every contribution that you make might be used or suitable. But there are things that you think you can do to make sure that the process is more likely to work in your favour.</p>\n\n\n\n<p>[00:24:46] <strong>Olga Gleckler:</strong> Yeah, because it&#8217;s open source. We have a huge community and we are working together. And if you did something like your part, it&#8217;s a bit naive to expect that someone else will pick immediately, like next day. And everything will be done until Friday. It&#8217;s not happening. So if you know that things are taking time and can be more complicated than they look like in the first place, you can adjust your expectations and don&#8217;t expect your shiny new Core Contributor badge next morning on your profile.</p>\n\n\n\n<p>You will get this badge, but only when you&#8217;re patch, or testing involvement, or other contribution will be going to release. So you will get this batch after the release, right after. But still it takes time. So if you are like in a hurry, you need to adjust.</p>\n\n\n\n<p>And of course, sometimes people are creating a patch, like I&#8217;ve done everything and it&#8217;s not going anywhere. And they are becoming disappointing and interest is going away for contribution. So, what you should do if you did something and no one is paying attention, at least it looks like it. You need to understand that we have more than 8,000 open tickets. So, it&#8217;s a huge thing and we are continuously triaging these tickets. This is why we need continuously triage and component maintainers in the first place.</p>\n\n\n\n<p>So if you did something and no one is bothering about it, you should look if this ticket has an owner. Owner is not a person who is doing the patch. This is person who should care, who supposed to care, about this ticket and push it forward. If this ticket has an owner, ping this owner right in the ticket. I did this, please take a look and how we can proceed.</p>\n\n\n\n<p>And this ticket has no owner, you can&#8217;t ping component maintainer. Some components don&#8217;t have maintainers because we have a lot of components and a bit short in maintainers. What should you do? You can turn up on regular dev chat, wait until open floor, and ask about your ticket and what you want to do about this. There will be a lot of seasoned Core contributors around at this point, and your ticket will be noticed. If it will be like good to go further or you need to rework, it will be seen. But at least you will be starting in the right direction forward. So, you need to be a bit pushy about things to make them happen.</p>\n\n\n\n<p>[00:27:31] <strong>Nathan Wrigley:</strong> Yeah, I guess that&#8217;s a really interesting lesson, isn&#8217;t it? If you contribute something and it doesn&#8217;t either immediately get noticed, or you feel that it&#8217;s not being noticed, I think that&#8217;s interesting advice. There are different ways that you can make your voice heard, shall we say, and you&#8217;ve mentioned some of those there.</p>\n\n\n\n<p>You also wanted to point out that there are roadblocks in the timeline of WordPress, where if you submit, let&#8217;s say a patch to something, there are periods in the calendar where things are frozen. And so there are periods, for example, just prior to a release, when we get to release candidate one or beta one, where really, you&#8217;re probably best doing something else because there are freezes. You say that the polyglots team needs to be able to translate strings and things like that. So don&#8217;t know if you want to talk about that.</p>\n\n\n\n<p>[00:28:19] <strong>Olga Gleckler:</strong> Yes, sometimes people made something and turn it up, right before the release. And they are disappointed because their patch will not go to this release. Because we have schedule and schedule for the next release, you can easily look on the make wordpress dot org slash core slash 6 hyphen four, for example, right now for this release, and understand the process.</p>\n\n\n\n<p>So if, for example, you are working on enhancement or a feature, they need to be in the trunk before better one. Because it&#8217;s like a significant changes, and they need good testing coverage, et cetera. Big things needs to be, go first. If ticket has a keyword early, it should be even before beta one, like right after the previous release. It should be done quickly, because these things can impact a lot.</p>\n\n\n\n<p>And then there&#8217;s a release candidate one. If you are working on a bug or if you are anything have content change, it should be in the trunk for release candidate one. Because with release candidate one, we have strings freeze. This is time before release candidate one and actual release for Polyglot&#8217;s team to be able to translate this new, or changed strings, to their own languages and make WordPress great in their own language.</p>\n\n\n\n<p>People need time for this, and we have a huge amount of strings. If you will be starting to contribute to Polyglot&#8217;s team, you will start to understand that it&#8217;s also a big deal and a big job. So if you&#8217;re working on something, you need to fit your patch in this right moment and not after.</p>\n\n\n\n<p>And of course, your patch needs to be tested, your patch needs to be reviewed from coding standards, for possible regressions. Possibly you will need to rework some things, or make changes in supporting documentation. For example, each function has this description, yeah, documentation for this function.</p>\n\n\n\n<p>This is why WordPress is so great. It&#8217;s clear, good written documentation inside code. So everything should be fine before it will go to trunk, even if the thing is working itself. Sometimes you need to cover this code with unit tests and you need to take into account these things as well. Sometimes, most of the time, people are surprised about unit tests.</p>\n\n\n\n<p>And we have a huge coverage of the code and it&#8217;s actually great. It makes things robust. So if you fix some bug, you are covering this part of the code with unit test to be sure that this will not be happening again. And it&#8217;s actually great.</p>\n\n\n\n<p>[00:31:09] <strong>Nathan Wrigley:</strong> There are some places, probably it&#8217;s fair to say, which are better places to start. And again, in the show notes that you&#8217;ve shared, you&#8217;ve alerted me to the fact that it may be that you think something is going to be relatively straightforward. So again, we&#8217;re talking about bug fixes here. So we are talking about the code.</p>\n\n\n\n<p>But it may be that you submit something and it turns out to be more difficult. So what you suggest then is that there are some recommendations for where a new contributor might start. So perhaps not the best idea to find the most difficult and challenging thing first time around. And there is some guidance that you can give in terms of where to look and tickets that are marked in a certain way. So yeah, I wonder if you could get into that.</p>\n\n\n\n<p>[00:31:53] <strong>Olga Gleckler:</strong> Yes, sometimes ticket can be, look very simple, but can turn into a rabbit hole. For example, my best example so far is changing double equal to triple equal. It can bring a lot of regressions, and you will be browsing, trying to fix other things. And most likely this change will not be worth it. And it will be very difficult to convince everyone else that it&#8217;s actually worth doing. And, we will not have ten more bugs because of this one.</p>\n\n\n\n<p>So sometimes good new patch, like a feature or enhancement, works better. And robust piece of code, when you have like head or tail, it&#8217;s great. And we have tickets which are marked as good first bugs. So if you are browsing tickets in Core track, you can see these tickets by this keyword, by search, custom search. And you can even subscribe to this good first bug hashtag on Twitter and following these tickets.</p>\n\n\n\n<p>For example, if some ticket is not good for you. If you don&#8217;t like it or you don&#8217;t want to work on UI, for example, or you prefer some other stuff, you can be subscribed to this hashtag, and following along and see what is actually working for you. And start when there will be like right ticket for you.</p>\n\n\n\n<p>But this can be like a bit shock, because a lot of people are subscribed to this good first bugs, they can be taken and already someone else can make a patch. But another thing is that if there is a patch, it does not mean that you cannot contribute because you can review this patch, you can make improvement to this patch.</p>\n\n\n\n<p>You can collaborate with other people on this ticket and make it work, and be great and quick. So, don&#8217;t abandon some ticket if there is a patch. Work is not done with the patch, it&#8217;s just the beginning.</p>\n\n\n\n<p>[00:34:01] <strong>Nathan Wrigley:</strong> You also make a recommendation to look out for, I guess, if you&#8217;re beginning at least anyway, to look out for tickets where the scope is really clear. And you&#8217;ve also got channels for feedback.</p>\n\n\n\n<p>[00:34:13] <strong>Olga Gleckler:</strong> Yes, definitely. Because sometimes scope isn&#8217;t clear and it also can turn rabbit hole. So if you have any doubts about tickets, just any, like a tickling feeling inside your head that something is not actually right, you can turn up into the Core channel on Slack, and ask about this ticket.</p>\n\n\n\n<p>Seasoned contributors will look through and clarify things for you. It&#8217;s actually better than put up a lot of work and then turn out that something was wrong in the beginning with the ticket and approach is not working. So don&#8217;t waste your time, and be ready to collaborate on the ticket from the beginning with other people. And it&#8217;s what actually is working.</p>\n\n\n\n<p>If you are like staying alone and doing something, you can feel lonely and a bit abandoned, and then disappointed. But if you are open to conversation to other people and can receive help, you can provide this help as well. And we are all working on the final result, on WordPress, and it&#8217;s great.</p>\n\n\n\n<p>[00:35:23] <strong>Nathan Wrigley:</strong> I like the way that you&#8217;ve rounded off the show notes, because you make the point that whole process of improving WordPress is a continuous learning process. And you may feel that you&#8217;ve just provided lots of your time. Maybe your patch wasn&#8217;t used, or you ran up against something which you couldn&#8217;t work out for yourself, and you needed additional help.</p>\n\n\n\n<p>But you make the point that it&#8217;s okay, you know. It wouldn&#8217;t be wise to view that as a waste of time because even negative experiences, when you view them from a distance can often be helpful. You may learn something along the way. So negative results, negative experiences may also turn out with time to be positive experiences. And so I guess that&#8217;s kind of a nice way to frame it.</p>\n\n\n\n<p>[00:36:05] <strong>Olga Gleckler:</strong> Yeah, you can like cut out things that are not working and to make clear paths to things which are working. And then the result, everyone&#8217;s contributions count. No matter if you make patch and it wasn&#8217;t working, and someone else went and improved your patch and make some additional things. And another iteration, another approach discovered some other possibilities. Upon your negative result, they will be going forward.</p>\n\n\n\n<p>[00:36:37] <strong>Nathan Wrigley:</strong> Just before we round it off, I do wonder what your thoughts are. It&#8217;s very clear from everything that you&#8217;ve said that you&#8217;re very committed, you&#8217;re very keen. You love all this stuff. I wonder what the state of contributions is? I&#8217;m particularly thinking about things like the pandemic, for example. And whether or not that had an impact in the amount of time that people were able to give.</p>\n\n\n\n<p>My understanding is that contributions may have taken a little bit of a dip. I don&#8217;t know where we&#8217;re at right now. Obviously the program that you mentioned for mentoring earlier is a great way to encourage people, to get people back in. But I don&#8217;t know what the situation is. Are people contributing this year in the same way that they were, let&#8217;s say, five years ago? I don&#8217;t know if you have any data on that at all.</p>\n\n\n\n<p>[00:37:24] <strong>Olga Gleckler:</strong> I don&#8217;t think any data, but yeah, we had a drop in contribution when pandemic started, because everyone was distressed and we need to take care about our family, our health. So we went through this and not once, but several times having this thing.</p>\n\n\n\n<p>But right now I think we are on the right track. It comes down and we used to new things, and it&#8217;s actually turned to be better for everyone. Because, for example, employers understand that people are able to work remotely. And many people right now are working remotely. They got more time. They are saving time on this road to work and back at home.</p>\n\n\n\n<p>So they are keeping this time and they can contribute more easily. I&#8217;m an example for this because I&#8217;m working remotely all these nine years. This is why I was able to contribute at the beginning, because otherwise I wouldn&#8217;t have time. So I think pandemic, it was horrible, yeah, but it&#8217;s turned for the better. And right now we can do more. We can contribute more and we can be more flexible in what we are doing.</p>\n\n\n\n<p>[00:38:45] <strong>Nathan Wrigley:</strong> Olga, I think we&#8217;ll wrap it up there. But before we do, obviously, you&#8217;re very keen, and if your passion for contributing has rubbed off on somebody else, and perhaps they would like to talk to you before they jump in with both feet. I wonder if you wouldn&#8217;t mind telling us a little bit about where we can find you. That might be a website or a Twitter handle, whatever you like.</p>\n\n\n\n<p>[00:39:07] <strong>Olga Gleckler:</strong> I think best place to find me is on Slack. Why my name? Because there are several channels, I can put people in the right direction straight away. And because I&#8217;m almost always there. I just want everyone to join. But, yes, if you have problems with Slack, and it can happen, then you can reach me on Twitter, and I will be able to help you join WordPress org, create an account, etc. But, probably you can try it yourself.</p>\n\n\n\n<p>[00:39:42] <strong>Nathan Wrigley:</strong> Olga Gleckler, thank you very much for joining us on the podcast today. I really appreciate it.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/Glekler/\">Olga Gleckler</a>.</p>\n\n\n\n<p>Olga is a self-taught developer with many years experience. After initially pursuing a career in marketing, she turned back to her passion for programming and became a full-time developer. She has been contributing to WordPress for four years and is currently serving as the Core triage lead for version 6.4. In addition, Olga is a maintainer for two components in Core, and actively participates in various teams within the WordPress community. Outside of work, she is also writing a fantasy book, which is a significant personal project for her.</p>\n\n\n\n<p>Olga has tried her hand in various teams within the community, ranging from Polyglots to Training, Support, and more. She challenges the commonly held misconception that only coders can contribute to the WordPress project, highlighting the many different ways individuals can contribute without coding skills.</p>\n\n\n\n<p>During our conversation, Olga shares some examples of non-coding contributions that can be made to the WordPress project. We talk about the process of submitting patches and contributions to WordPress, discussing the schedule for releases, and the importance of understanding the processes and deadlines.</p>\n\n\n\n<p>Olga also emphasises the essential steps of testing, reviewing for coding standards, and ensuring correct documentation in order to make impactful contributions.</p>\n\n\n\n<p>Olga&#8217;s journey in the WordPress community has been very varied. She discusses how being a part of this ecosystem has improved her career prospects and gained her trust from others. However, she acknowledges that not everyone finds their place immediately, and may struggle to get started. She explores how to contribute without becoming discouraged, and shares her experiences in the mentorship program that paired mentors with mentees in navigating the WordPress community.</p>\n\n\n\n<p>Throughout the conversation, Olga shows a deep passion for the WordPress project and the collaborative nature of the community. She reminds us that contributing to open-source projects requires patience and persistence, and shares her insights on learning methods, seeking guidance, and asking questions in order to make progress.</p>\n\n\n\n<p>If you’ve thought about contributing to WordPress, but are not sure where to begin, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/project/2023/06/23/launch-your-wordpress-contributor-journey-through-the-mentorship-program-pilot/\">Contribute Mentorship Program</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/6-4/\">WordPress 6.4 Development Cycle</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/polyglots/handbook/about/\">Polyglots Team</a></p>\n\n\n\n<p><a href=\"https://core.trac.wordpress.org/\">WordPress Core Trac</a></p>\n\n\n\n<p><a href=\"https://twitter.com/Glekler/\">Olga&#8217;s Twitter</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Sep 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"Do The Woo Community: La Comunidad de WordPress en Español / WordPress Community in Spanish\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76497\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://dothewoo.io/spanish-latin-america-wordpress-community/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:454:\"<p>Únete a Juan Hernando, Ericka Barboza y Javier Casares en una animada conversación sobre la comunidad de WordPress en España y Latinoamérica.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/spanish-latin-america-wordpress-community/\">La Comunidad de WordPress en Español / WordPress Community in Spanish</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Sep 2023 09:23:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"HeroPress: My Journey and Travels with WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=5811\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"https://heropress.com/essays/my-journey-and-travels-with-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=my-journey-and-travels-with-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12098:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/09/091223-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress has given me a wealth opportunity, freedom, and some fabulous friendships.\" /><p>I love WordPress!&#8230;</p>\n\n\n\n<p>For many years I opened and operated Irish pubs for investors across Europe &#8211; it was lots of fun, it was also exhausting! I was itching to do something that wasn&#8217;t so physically demanding and very restricting on my time. </p>\n\n\n\n<h2 class=\"kt-adv-heading5811_803067-d3 wp-block-kadence-advancedheading\">The Journey Begins</h2>\n\n\n\n<p>I began to learn WordPress. WordPress gave me the freedom I was craving. After a couple of years playing with it I began to build sites for other people, eventually leaving the hospitality industry to build websites.</p>\n\n\n\n<p>Back then I had recently moved from Bruges in Belgium to Brittany region of France where I&#8217;d bought an old granite 4 story house built in 1860 to renovate. I was asked by a local French / English association if I would run some in person workshops for some of their members. These people who wanted to build and maintain a simple website themselves.</p>\n\n\n\n<p>Most attendees were English speaking Ex Pats from start-up businesses with tiny budgets. Some were French speakers, from local French sports teams and associations, who were wanting to create an information point for their clubs. The clubs and associations had even less budget</p>\n\n\n\n<p>I agreed to run a pilot workshop, which I called &#8216;Build a Simple Website by Teatime Today&#8217; to see how things went. The uptake was for the first workshop was phenomenal. We were limited by room capacity and safe power points to 25 participants.</p>\n\n\n\n<p>All slots were taken in under 24 hours. A few days later the association got in touch again saying, &#8220;We know you said lets run a pilot and take things from there&#8221; however we have had another 43 people enquiring so we have opened a waiting list.&#8221;</p>\n\n\n\n<p>&#8220;Ooooh la la&#8221; I said &#8220;I&#8217;d better work on my presentation skills!&#8221;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-being-a-teacher\">Being A Teacher</h2>\n\n\n\n<p>It was the first of many WordPress workshops over the three years that I lived in Brittany, I regularly presented to several organisations and associations and I really enjoyed it.</p>\n\n\n\n<p>As a happy accident, it was also the start of me offering website hosting and maintenance too. Initially this was offering very low cost shared hosting space on my server for the workshop participants giving each their own Cpanel. Domains were obtained for each participant prior to the workshops in their own names and I created their hosting accounts prior to the workshops too again with their prior consent. I had also asked each participant to prepare initial pages texts, images and logos if they had one saved in a file on their laptops ready for the workshop.</p>\n\n\n\n<p>Each workshop began with a quick peak at Cpanel for the purpose of creating an email account and to load WordPress on to the domain using Fantastico &#8211; remember Fantastico? Fantastico was superseded by Softaculous and for people people with very little tech experience, wanting to build a website DIY [as a do it yourself project] it offered an easier route than loading WordPress via FTP.</p>\n\n\n\n<p>From there we covered logging into their WordPress dashboards loading a theme, adding pages adding content to the pages including logo and images from the participants pre prepared folders.<br />For the ease of the workshop we all used the same theme. It was the beginning of the participants WordPress journey. I was delighted;- all of them had a thirst for more in depth learning as a result more workshops followed. Within a couple of years I was super busy again feeling my time was not my own again!</p>\n\n\n\n<h2 class=\"kt-adv-heading5811_c67890-71 wp-block-kadence-advancedheading\">Moving On</h2>\n\n\n\n<p>Working with WordPress meant I could work from anywhere as long as I had an internet connection.<br />It was time for another adventure! This time relocating from France to England where my partner Simon, an international touring musician, and I lived on a narrowboat. I spent several years traveling with the band when they toured, mostly taking photos and keeping the tour bus spic and span! With a regular job that wouldn&#8217;t have been possible.</p>\n\n\n\n<p>In January 2017, after a very busy 2016, we took a quick spur of the moment holiday to Ullapool in the Scottish Highlands, seeking snow! We extended our trip by a week, then another week and then decided we wanted to stay, and stay we did! We took a 6 month Winter let on a holiday cottage, popping off on tour from our new location. Towards the end of the 6 months, we found a cottage on the edge of Strathgarve Forest between Ullapool and Inverness and moved in between tour dates.</p>\n\n\n\n<p>It&#8217;s a stunning, extremely rural location and we love it. Here I have an office in our cottage which benefits from superfast broadband despite our very rural location. After over 30 years of touring Simon trying his best to retire from life on the road.</p>\n\n\n\n<p>I have a bunch of clients that keep me as busy as I want to be, some of whom I have worked with for many years, some are new to me since coming to Scotland.</p>\n\n\n\n<p>I have been lucky in that lovely clients seem to find me, through word of mouth really. I don&#8217;t advertise and I haven&#8217;t had the capacity to take on new clients for some time. I really don&#8217;t want to expand which may seem strange to many. I have no interest in taking on employees, I have been there and done that in my pub life days. These days I like an easy life enabling me to enjoy where I live and indulging my passion for open spaces and photography.</p>\n\n\n\n<p>WordPress has an amazing community around the World, it has brought so many opportunities and so many friendships into my life from all around the world. I love the collaboration.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-giving-back\">Giving Back</h2>\n\n\n\n<p>Just last week I was on a Zoom call with a group hosted from the USA. Nathan, the guy hosting the call said to me, &#8221; Hey Sadie, I saw a photograph on display at WordCamp USA last week that you&#8217;d taken. Did you know about that?&#8221;</p>\n\n\n\n<p>Truth was I didn&#8217;t. Nathan said &#8220;I&#8217;ll email it to you I took a photo of your photo!&#8221;</p>\n\n\n\n<p>The next morning I received an email from Nathan and attached was his photo of my photo in a frame with my name and a QR code attached. It was a&nbsp; Fly Agaric photo which I had taken and submitted as a creative commons contribution to the WordPress Photo Directory which is part of the Make WordPress project. I read an article a few weeks ago which was all about getting involved in the WordPress community for the growth and benefit of the community and the future of WordPress.</p>\n\n\n\n<p>&#8220;Five for the Future&#8217; which is an initiative promoting the WordPress community’s contribution to the platform’s growth. It&#8217;s an open source project, WordPress is created by a diverse collection of people from around the world. The purpose of the project is to encourages organisations to contribute five percent of their resources to WordPress development.</p>\n\n\n\n<p>Next I read about the Make WordPress initiative and loved everything about it. There are lots of ways for WordPress advocates to get involved and give something back to the fantastic community that WordPress is.</p>\n\n\n\n<p>The Photo Directory grabbed my attention because I am a prolific snapper!! I immediately began to submitting photographs.&nbsp; All photos are submitted to the WordPress Photo Directory are submitted on the basis that they are gifted in to the public domain for anyone to use, anywhere, for any purpose, without the need for attribution. I recently join the Photos team as a moderator too.</p>\n\n\n\n<p>Whilst WordPress hasn&#8217;t made me a millionaire yet! It has given me a wealth opportunity, freedom, and some fabulous friendships. WordPress is a huge part of my life. I love WordPress!</p>\n\n\n<div class=\"kb-gallery-wrap-id-5811_02d44e-72 alignnone wp-block-kadence-advancedgallery\"><ul class=\"kb-gallery-ul kb-gallery-non-static kb-gallery-type-grid kb-gallery-id-5811_02d44e-72 kb-gallery-caption-style-bottom-hover kb-gallery-filter-none kb-gallery-magnific-init\"><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/09/1264b7706fd91b16.42330373-1024x683.jpeg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/09/1264b7706fd91b16.42330373-scaled.jpeg\" width=\"2560\" height=\"1707\" alt=\"\" class=\"wp-image-5829\" /></div></div></a></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/09/12564c782f823ef03.11650285-1024x768.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/09/12564c782f823ef03.11650285-scaled.jpg\" width=\"2560\" height=\"1920\" alt=\"\" class=\"wp-image-5834\" /></div></div></a></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/09/20564b2aed3c07247.22900210-1024x768.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/09/20564b2aed3c07247.22900210-scaled.jpg\" width=\"2560\" height=\"1920\" alt=\"\" class=\"wp-image-5830\" /></div></div></a></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/09/32764bfc861947853.44027496-1024x683.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/09/32764bfc861947853.44027496-scaled.jpg\" width=\"2560\" height=\"1707\" alt=\"\" class=\"wp-image-5832\" /></div></div></a></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/09/49264fb52266dd038.07548553-1024x683.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/09/49264fb52266dd038.07548553-scaled.jpg\" width=\"2560\" height=\"1707\" alt=\"\" class=\"wp-image-5833\" /></div></div></a></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><a href=\"https://heropress.com/wp-content/uploads/2023/09/83264b2ae3eb55005.15218256-1024x768.jpg\" class=\"kb-gallery-item-link\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic kb-gallery-image-ratio-land32 kb-has-image-ratio-land32\"><img src=\"https://heropress.com/wp-content/uploads/2023/09/83264b2ae3eb55005.15218256-scaled.jpg\" width=\"2560\" height=\"1920\" alt=\"\" class=\"wp-image-5831\" /></div></div></a></div></li></ul></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/my-journey-and-travels-with-wordpress/\">My Journey and Travels with WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Sep 2023 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Sadie-Michaela Harris\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: WordPress Plugin Developers Renew Demands for Better Plugin Metrics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148726\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/wordpress-org-plugin-developers-renew-demands-for-better-plugin-metrics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9497:\"<p>It has be nearly one year since <a href=\"https://wptavern.com/wordpress-org-removes-active-install-growth-data-for-plugins\">WordPress silently turned off active install growth data for plugins</a> hosted in the official plugin repository, a key metric that many developers rely on for accurate tracking and product decision-making. “Insufficient data obfuscation” was cited as the reason for the charts’ removal, but this opaque decision landed without any communication from those who had made the call in a private discussion.</p>\n\n\n\n<p>In a ticket originally titled “<a href=\"https://meta.trac.wordpress.org/ticket/6511\">Bring back the active install growth chart,</a>” RebelCode CEO Mark Zahra made the opening plea for thousands of plugin developers who were asking for the return of this data. From those who simply host hobby plugins and enjoy the thrill of watching people use software they made to business owners who need this data to make critical decisions, the overwhelming consensus was that this data is valuable and should be available to those who are contributing to WordPress through plugins.</p>\n\n\n\n<p>In an appearance on the&nbsp;<a href=\"https://wpwatercooler.com/wpwatercooler/ep432-solutions-to-the-active-growth-problem/\">WPwatercooler podcast</a> last year, Audrey Capital-sponsored meta contributor Samuel &#8220;Otto&#8221; Wood confirmed the decision was made through private channels via Slack DMs in a discussion initiated by Matt Mullenweg. He also revealed that the active install growth chart was removed because it was giving inaccurate data and that the data one could derive from it was inaccurate:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I read through all that discussion and we worked, they worked on it for a long, Scott and several people tried various things before removing it. They adjusted the values, they adjusted numbers. They, they went through a ridiculous amount of iteration and in the end, none of it worked. People were still using it even though it was giving them basically garbage. So finally removing it was the only thing to do. We did have a plan for replacing it. We just didn’t have a plan for replacing it immediately. Nevertheless, giving them active install count numbers that are wrong is more harmful, we felt, to both users and developers interests than simply not giving them at all.&nbsp;</p>\n</blockquote>\n\n\n\n<p>Wood offered an explanation on the podcast that should have been delivered weeks earlier by those involved in the discussion on official channels. Despite the earlier data being flawed and &#8220;insufficiently obfuscated,&#8221; developers still want access to the raw data, not interpretations of that data. </p>\n\n\n\n<p>These are the posts that track the history and development of developers&#8217; pleas to reinstate access to the data:</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<ul>\n<li><a href=\"https://wptavern.com/wordpress-org-removes-active-install-growth-data-for-plugins\">WordPress.org Removes Active Install Growth Data for Plugins</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/wordpress-org-plugin-developers-demand-transparency-regarding-the-removal-of-active-install-growth-data\">WordPress.org Plugin Developers Demand Transparency Regarding the Removal of Active Install Growth Data</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/discussion-on-replacing-plugin-active-install-growth-data-continues-behind-closed-doors\">Discussion on Replacing Plugin Active Install Growth Data Continues Behind Closed Doors</a></li>\n</ul>\n\n\n\n<p>During the height of this discussion, developers made many suggestions for different data points that would be meaningful for tracking their efforts, and Matt Mullenweg responded that he was amenable to showing more stats to plugin authors about their plugins. No progress on this effort has been reported since then.</p>\n\n\n\n<p>&nbsp;StellarWP&nbsp;Product Marketing Director&nbsp;Taylor Waldon has <a href=\"https://twitter.com/tElizaRose/status/1699134532199538877\">reopened this discussion</a> nearly a year later, calling on Mullenweg to stop restricting access to plugin data from people who are hosting themes and plugins on WordPress.org.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Dear <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> <br /><br />Without (real) Active Install data, we are not able to measure the success of our free product. Downloads is not the right KPI. Please bring it back. <br /><br />Sincerely,<br />All WP Marketers with free products on .org. <br /><br />If you agree, please RT, reply, etc. <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a></p>&mdash; Taylor Elizabeth Rose | Find me on Bluesky (@tElizaRose) <a href=\"https://twitter.com/tElizaRose/status/1699134532199538877?ref_src=twsrc%5Etfw\">September 5, 2023</a></blockquote>\n</div>\n\n\n\n<p>&#8220;I talked to a bunch of folks at [WCUS] contributor day,&#8221; Paid Memberships Pro co-founder and CEO Jason Coleman said in response to Waldon&#8217;s tweet. &#8220;As far as I know, there isn&#8217;t any other current effort to update or replace the install count numbers or old &#8216;growth&#8217; chart.\'&#8221;</p>\n\n\n\n<p>Coleman put together a <a href=\"https://docs.google.com/document/d/1RSNUTdFk3XA-u8Y0-NUe7iaM5zBz0KVM--JdXjBp6iE/edit\">draft proposal</a> with some ideas from his conversations. The document describes a common scenario where plugin developers are left in the dark about the growth or decline of their plugins&#8217; active installations:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Imagine a developer with a plugin with 150k active installations. That developer has effectively 0 quantitative feedback on whether users of his plugin are growing or falling. The download count has a trend, but there is no separation between new downloads and updates. The download count tracks developmental pace as much as user growth. A bump in downloads could be due to a security vulnerability being patched or an influx of new users. The current active installations count is severely rounded and offers no feedback until such a plugin either gains or loses 33% of its users, which are drastically different outcomes.</p>\n</blockquote>\n\n\n\n<p>Coleman contends that plugins hosted outside of WordPress.org are able to gather more meaningful metrics. Popular plugins have resorted to including features in non-WordPress.org add-ons or simply removing their extensions altogether from the repository for lack of data. </p>\n\n\n\n<p>His proposal includes a few metrics that would help developers better track their plugins, even if that data is only shown to the authors themselves:</p>\n\n\n\n<ul>\n<li>Share a more accurate active installations count with the owners of a plugin.</li>\n\n\n\n<li>Share more accurate version number counts with the owners of a plugin.</li>\n\n\n\n<li>Differentiate the download count by type: website downloads, dashboard installs, dashboard downloads, updates, other (hits to the zip file).</li>\n\n\n\n<li>Allow plugin developers to define custom event triggers to be tallied and displayed to the plugin owners on the plugins .org profile page.</li>\n</ul>\n\n\n\n<p>Coleman&#8217;s draft is still in progress and so far he is the only one who has authored the document. If the recommended actions gain any traction, he said he hopes to be part of the contributor team that implements the changes. </p>\n\n\n\n<p>&#8220;The intention was to write something that could be proposed to meta team,&#8221; Coleman said. &#8220;But honestly, I thought I would write it up, it would get shot down, and then I could move on with my life. Even if nothing got updated, it would be more clear to me and others which parts of the .org code were in public repositories and which were in the private repositories. It would be more clear what the real issues are with the active installs count.</p>\n\n\n\n<p>&#8220;The communication around the removal of the active install growth chart caused many to lose trust in parts of the WordPress .org project. I thought some clarity around how things work and the real reasons around the changes would help to rebuild some of that trust that was lost.&#8221;</p>\n\n\n\n<p>WordPress.org has always been the most popular distribution channel for the most widely used plugins, but the data available has not kept pace with developer and business needs. Releasing the raw data, while respecting any privacy limitations, would allow developers to extract their own interpretations of that data and allow services to present it in creative ways.</p>\n\n\n\n<p>At the very least, this data should be available to developers (even if it&#8217;s not public) to help them better track the trajectory of their plugins and the efficacy of their marketing efforts. More data can only serve to improve the WordPress ecosystem&#8217;s ability to continue powering a multi-billion dollar economy. There are undoubtedly many technical requirements for supporting the release of this data, and they need to be prioritized if WordPress.org is to continue attracting the best products for distribution.</p>\n\n\n\n<p>&#8220;This is not about vanity metrics or inflating numbers for marketing purposes,&#8221; Coleman said. &#8220;This is about getting valuable feedback on the relative use of a plugin hosted in the .org repository so developers can make informed decisions and investments in those plugins.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Sep 2023 20:24:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"Do The Woo Community: More WCUS Insights from Matt, Seth, Shambi, Jeremy, Mike, Patrick, Bud and Katie\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76485\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://dothewoo.io/more-wcus-insights-from-matt-seth-shambi-jeremy-mike-patrick-bud-and-katie/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:520:\"<p>Reflections and highlights of WordCamp US 2023 from Matt Medeiros, Seth Goldstein, Shambi Broome, Bud Kraus, Jeremy Freemont, Mike Demo, Patrick Rauland and Katie Keith</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/more-wcus-insights-from-matt-seth-shambi-jeremy-mike-patrick-bud-and-katie/\">More WCUS Insights from Matt, Seth, Shambi, Jeremy, Mike, Patrick, Bud and Katie</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Sep 2023 09:03:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: WordPress Training Team Seeks Community Feedback on Learning Pathways\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148690\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/wordpress-training-team-seeks-community-feedback-on-learning-pathways\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2845:\"<p>Earlier this year, the WordPress Training Team published the <a href=\"https://make.wordpress.org/training/2023/05/30/analysis-of-the-individual-learner-survey-results/\">results from the Individual Learner Survey</a> completed in 2022. The goal of the survey was to identify the most useful and high-impact resources and content for <a href=\"https://learn.wordpress.org/\">Learn.WordPress.org</a> and guide the future development of this community learning tool.</p>\n\n\n\n<p>One of the main takeaways of this survey was the need for a clear, structured, and user-friendly approach to presenting Learn WordPress content. This need was also confirmed by feedback from WordCamp Europe Contributor Day attendees.</p>\n\n\n\n<p>As a result, the training team launched the <a href=\"https://make.wordpress.org/training/2023/07/07/project-thread-learning-pathways-on-learn-wordpress/\">Learning Pathways on Learn WordPress project</a> in July of this year. The objective of this project is to create and launch progressive user-friendly learning pathways tailored to different types of Learners on Learn WordPress. The training team anticipates that this project will be a year-long effort, working collaboratively with multiple different teams, including the Meta and Marketing teams. </p>\n\n\n\n<p>Since WordCamp Europe, the Training Team has started the process of drafting rough outlines for learning pathways intended for Users, Designers, and Developers.</p>\n\n\n\n<p>In August, Automattic-sponsored training team contributor Wes Theron published a post on the training team blog, <a href=\"https://make.wordpress.org/training/2023/08/24/looking-for-feedback-learning-pathway-outlines/\">asking for community feedback</a> on the proposed learning pathways. </p>\n\n\n\n<p>I asked Theron why he feels this project is so important, and what feedback he would like from the community:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The Learning Pathways project focuses on improving the educational experience on Learn WordPress by creating personalized learning journeys for various learner profiles. These tailored pathways aim to enhance the Learn WordPress platform&#8217;s effectiveness and user-friendliness.</p>\n\n\n\n<p>We have drafted the rough outlines for learning pathways intended for Users, Designers, and Developers. We&#8217;re excited to get the community&#8217;s thoughts and ideas to help shape them further before moving forward.</p>\n</blockquote>\n\n\n\n<p></p>\n\n\n\n<p>The Training Team has set the deadline for feedback for the 15th of September 2023. If you would like to review the proposed learning pathways and provide your feedback, you can do so from the <a href=\"https://make.wordpress.org/training/2023/08/24/looking-for-feedback-learning-pathway-outlines/\">Looking for feedback: Learning pathway outlines post</a> on the Training Team blog.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Sep 2023 03:24:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Jonathan Bossenger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: 10up Merges With Fueled, Backed by Insignia Capital\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148679\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wptavern.com/10up-merges-with-fueled-backed-by-insignia-capital\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9330:\"<p><a href=\"https://10up.com/\">10up</a>, a leading development agency and contributor to the WordPress project, has <a href=\"https://10up.com/blog/2023/10up-joins-forces-with-fueled-digital-media/\">merged</a> with <a href=\"https://fueled.com/\">Fueled</a>, a technology consultancy that specializes in mobile and web application development. Together, the companies now employ more than 400 full time team members, forming a digital powerhouse with expanded market reach across mobile and publishing sectors.</p>\n\n\n\n<p>&#8220;Fueled has built stand out iOS and Android apps – several of which I’ve personally used – for clients like <a href=\"https://fueled.com/projects/warby-parker\">Warby Parker</a>, <a href=\"https://fueled.com/projects/verizon/\">Verizon</a>, the United Nations, and even Apple themselves,&#8221; 10up President Jake Goldman said. &#8220;Just as 10up has <a href=\"https://wildsymphony.com/\">built some great mobile applications</a>, Fueled has executed notable works in the web application space for clients like <a href=\"https://fueled.com/projects/wsj\">Wall Street Journal</a> and <a href=\"https://fueled.com/projects/wirecutter\">The New York Times</a> – but content management systems and editorial experience has never been a core focus and strength. Until now.&#8221;</p>\n\n\n\n<p>The merger transaction was made possible by investment  from <a href=\"https://www.insigniacap.com/\">Insignia Capital</a>, a firm that previously invested in Fueled. Insignia has made Fueled&#8217;s merger with 10up its first major growth investment, paying to restructure the companies&#8217; ownership model. All parties invested in the merger hold meaningful shares, with none of them holding a majority share.</p>\n\n\n\n<p>Goldman said 10up owners rolled over meaningful equity into the joint business, &#8220;but there was also a very healthy purchase of 10up equity to make this possible.&#8221;</p>\n\n\n\n<p>10up&#8217;s announcement hinted at more acquisitions in the newly combined companies&#8217; future.</p>\n\n\n\n<p>&#8220;Insignia brings a whole new class of financial and investment capabilities to 10up and Fueled, with an appetite for responsibly paced growth through acquisition,&#8221; Goldman said. &#8220;They don’t just bring capital – they also bring expertise and impressive connections.&#8221;</p>\n\n\n\n<p>He further elaborated on their acquisition strategy as seeking to expand their combined capabilities &#8220;to compete with the biggest digital transformation agencies:&#8221;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>In the broadest of terms, I think that we’re pretty open minded to what we find in the market, but opportunities that meaningfully expand what we can offer &#8211; shoring up weaker spots in our capabilities &#8211; are going to be the most attractive. As examples, while we’ve each done CRM and CDP integration work and strategy, I’d imagine a first rate CRM and/or CDP consultancy with some great case studies and clients would be the kind of opportunity that would be particularly interesting.</p>\n</blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Open Source Contribution Will Continue To Be a Priority at 10up</h2>\n\n\n\n<p>Nearly 12 years after Goldman started 10up with what he said was &#8220;a small personal savings account and the sweat equity of more than a decade making websites and other media,&#8221; he is no longer the sole leader of the organization and will take on the role of Partner in the merged companies. Integral to the success of 10up, which Goldman has scaled to $40M+ in annual revenue, is its consistent commitment to supporting the open source ecosystem from which it has derived millions of dollars in value. Fueled acknowledged this in its <a href=\"https://fueled.com/blog/fueled-merges-with-10up/\">announcement</a> about the merger:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>10up has long held a commitment to the open web, and open source contributions as a core value. This will remain a priority, especially towards the WordPress community, and will be further strengthened by the additional market reach gained from the merger.</p>\n</blockquote>\n\n\n\n<p>Fueled shares this same ethos, which they intend to continue cultivating following the merger.</p>\n\n\n\n<p>&#8220;Fueled has always been supportive of open source, even if their part of the market (mobile apps) hasn&#8217;t embraced that model in the way web CMS has,&#8221; Goldman said. &#8220;They have open sourced projects (in fact, we incidentally found that we were using one!), and, like 10up, have fully embraced and focused on open technology solutions like NodeJS and React for web applications.&#8221;</p>\n\n\n\n<p>For the most recent WordPress 6.3 release, <a href=\"https://jeanbaptisteaudras.com/2023/08/contribution-stats-for-wordpress-6-3-lionel/#:~:text=WordPress%206.3%20overall%20stats,which%20is%20a%20great%20ratio!\">10up had the second most contributions by company</a>, with 290 contributions from 16 people, superseded only by Automattic, which boasts 83 contributors. </p>\n\n\n\n<p> </p>\n\n\n\n<img src=\"https://jeanbaptisteaudras.com/2019/wp-content/uploads/2023/08/wp63-contributor-company.svg\" alt=\"\" />image credit: <a href=\"https://jeanbaptisteaudras.com/2023/08/contribution-stats-for-wordpress-6-3-lionel/#:~:text=WordPress%206.3%20overall%20stats,which%20is%20a%20great%20ratio!\">WordPress 6.3 contribution stats</a>\n\n\n\n<p>10up has consistently been among the top contributors to the software, which has been essential to the world-class publishing experiences the company has built for its clients.</p>\n\n\n\n<p>&#8220;That commitment to giving back to the web, making sure there&#8217;s a ladder for the next generation of developers to climb, and helping open technologies thrive remains with us,&#8221; Goldman said. &#8220;Our new business partners understand that this is deeply intertwined with 10up&#8217;s identity, and perhaps more importantly, our <em>success</em>. It&#8217;s not <em>just</em> a generosity thing – it&#8217;s also good business.</p>\n\n\n\n<p>&#8220;Merging with and investing in 10up would be pretty foolish if you aren&#8217;t comfortable with the tools and platforms we use and prefer, most especially the web&#8217;s most popular open source CMS, and you can bet that being comfortable with that, and researching that question, was essential to their comfort with merging. In many ways, that&#8217;s a validation for WordPress.&#8221;</p>\n\n\n\n<h3 class=\"wp-block-heading\">10up and Fueled Will Gradually Merge Services and Administration, Pursuing Large Scale Digital Transformation Clients</h3>\n\n\n\n<p>10up and Fueled will largely operate as two companies and close partners for the time being, sharing leads and pursuing customer growth together. Goldman said the vision is not to simply have web publishing/WordPress customers and separate mobile app customers but rather to go after large scale digital transformation projects.</p>\n\n\n\n<p>&#8220;That means having a fully integrated way to deliver everything from the mobile apps, to the website and CMS, to advanced e-commerce and CRM integrations (even if we may only provide one of those services to some clients),&#8221; he said. &#8220;That means we&#8217;re not just operating as separate companies in the <em>future</em>, but truly merging and unifying our companies from leadership and sales on down through project and product management, user research and design, and engineering delivery.&#8221;</p>\n\n\n\n<p>Given that both brands hold considerable weight and influence in their respective markets, Goldman said they agreed &#8220;it would be incredibly foolish to discount that and rush to a single brand.&#8221; Instead, they plan to explore how the companies can work together.</p>\n\n\n\n<p>&#8220;We honestly don&#8217;t know where we&#8217;ll land on the external brand question, and didn&#8217;t think it was fundamental to the question of merging,&#8221; Goldman said. &#8220;We&#8217;ll be exploring and researching that question together, and any change would, again, be gradual and planned.</p>\n\n\n\n<p>&#8220;We all similarly agree that when we think out into the future, whether that&#8217;s 12 or 24 months from now (probably something in between), that we probably don&#8217;t want two separate, external, top line company brands competing for attention and oxygen in the space, to say nothing of competing for internal focus and resources.&#8221;</p>\n\n\n\n<p>He said that could play out in a number of ways, and may be a data driven decision. For example, 10up could evolve to be the brand name for the WordPress engineering services team or the company&#8217;s open source and productized solutions. Nothing has been predetermined about the branding.</p>\n\n\n\n<p>In the meantime, it appears to that the combination of companies will be a more gradual merging of services and administration.</p>\n\n\n\n<p>&#8220;In the mid term, maybe the next year, we want to focus on building a highly collaborative world class sales and growth operation, unifying back office (benefits management, financial operations, recruiting ops, etc), and looking at where some of our smaller capabilities and disciplines that aren&#8217;t very specific to 10up or Fueled delivery might benefit from joining forces and achieving some economy of scale,&#8221; Goldman said.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Sep 2023 21:12:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WordPress.org blog: The Month in WordPress – August 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15933\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2023/09/the-month-in-wordpress-august-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12997:\"<p>August 2023 marked another exciting chapter in WordPress, with the Community Summit and WordCamp US bringing the community together for meaningful discussions, knowledge sharing, and learning. This month also welcomed the long-awaited WordPress 6.3 release and offered a glimpse of what&#8217;s to come. Let&#8217;s dive into it.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Meet WordPress 6.3 “Lionel”</h2>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/08/lionel/\"><strong>WordPress 6.3 &#8220;Lionel&#8221;</strong></a> was released on August 8, 2023, and named after the acclaimed vibraphonist, pianist, and jazz percussionist Lionel Hampton.</p>\n\n\n\n<p><strong>This major update makes bringing your vision to life with blocks more intuitive and efficient.</strong> Your content, templates, and patterns are now seamlessly integrated into the Site Editor, enabling you to craft every aspect of your online presence within a single location. You can sharpen your designs with new tools, enjoy fine-tuned control over navigation menus, and work faster with the Command Palette. <a href=\"https://wordpress.org/download/releases/6-3/\">Explore what&#8217;s new</a>.</p>\n\n\n\n<p>WordPress 6.3 features over 500 features and enhancements with a continued emphasis on <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">performance</a> and accessibility. This release was made possible by more than 650 contributors from 52 countries.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>While the Site Editor will continue to be enhanced, this release means a significant milestone as <strong>it marks the conclusion of Gutenberg Phase 2</strong>. Take a moment to watch “<a href=\"https://www.youtube.com/watch?v=FcTLMTyD2DU\">Designed with WordPress</a>”—an ode to this remarkable journey worth celebrating.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 6.3.1</a>.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Roadmap to 6.4</h2>\n\n\n\n<p>Contributors are already working on WordPress 6.4, expected to be released on<strong> November 7, 2023</strong>. This release, led by an <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">underrepresented gender release squad</a>, will focus on enhancing different aspects of the WordPress experience while continuing the foundational work for Gutenberg Phase 3. Users can anticipate features like font management and a new default theme, Twenty Twenty-Four.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\"><strong>Twenty Twenty-Four</strong></a> aims to be a versatile theme, featuring a range of templates and patterns specifically designed for three use cases: entrepreneurs and small businesses, photographers and artists, and writers and bloggers.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/08/22/roadmap-to-6-4/\">Check out the 6.4 roadmap post</a> for a tentative preview of expected features.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Two new versions of Gutenberg shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/10/whats-new-in-gutenberg-16-4-9-august/\"><strong>Gutenberg 16.4</strong></a> was released on August 9, 2023. It introduced a new “auto-inserting blocks” experimental feature, a progress bar component that can be used throughout the interface, and block supports for the Footnotes block.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/23/whats-new-in-gutenberg-16-5-23-august/\"><strong>Gutenberg 16.5</strong></a><strong> </strong>shipped on August 23, 2023, and focused on enhancements to the Command Palette and enabling further customization of blocks.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a>Follow the “<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s new in Gutenberg</a>” posts to stay on top of the latest enhancements.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Next generation of WordPress events, WP Admin redesign, and more</h2>\n\n\n\n<ul>\n<li>The Community team has been busy ushering in the next generation of WordPress events. <a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Four pilot events were successfully held</a> in July and August, with another five planned before the end of the year.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff post</a> elaborates on the concepts explored so far to revitalize the WordPress admin experience.</li>\n\n\n\n<li>In response to <a href=\"https://www.european-cyber-resilience-act.com/\">Europe&#8217;s Cyber Resilience Act</a> (CRA), leaders from Drupal, Joomla!, TYPO3, and WordPress <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">co-authored an open letter</a> addressing concerns about the current CRA definitions and terms and the implications for open source projects.</li>\n\n\n\n<li><a href=\"https://wordpress.org/blocks/\">Check out WordPress.org/blocks</a>—A <a href=\"https://make.wordpress.org/meta/2023/08/11/introducing-wordpress-org-blocks/\">new page</a> that explores the power of blocks within WordPress and as a broader framework.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/21/wordpresscs-3-0-0-is-now-available/\">WordPressCS 3.0.0 is now available</a>. This update to the WordPress Coding Standards introduces improvements in accuracy, performance, stability, and compatibility with modern PHP versions.</li>\n\n\n\n<li>The first cohort of the WordPress Contributor Mentorship Program, which aims to help new contributors onboard to Make teams, <a href=\"https://make.wordpress.org/project/2023/08/11/the-inaugural-cohort-of-the-wordpress-contributor-mentorship-program-has-concluded/\">successfully concluded</a> last month.</li>\n\n\n\n<li><a href=\"https://wordpress.org/remembers/\">WordPress Remembers</a> went live in August to honor contributors who left a lasting impact on the project and have since passed away.</li>\n\n\n\n<li>Core team members proposed to <a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">sync Gutenberg code with core earlier in the release cycle</a> to streamline the integration of new features and reduce risks and delays in major release milestones.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/08/11/blue-note-the-second-community-theme-is-released/\">Blue Note</a>, the second block theme born from the Community Themes initiative, is live on the Theme Directory.</li>\n\n\n\n<li>Every month, the Training team works to expand the <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> catalog with new courses, tutorials, online workshops, and more. <a href=\"https://make.wordpress.org/updates/2023/09/02/whats-new-on-learn-wordpress-in-august-2023/\">See what’s new</a>.</li>\n\n\n\n<li>Openverse maintainers met in Copenhagen for an exciting exchange with Statens Museum for Kunst (SMK), Denmark’s largest art museum. <a href=\"https://make.wordpress.org/openverse/2023/08/17/cultivating-collaborative-pathways-with-statens-museum-for-kunst-smk/\">Learn about their discussions and collaboration efforts</a> to advance openly licensed works.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Keen to see new WordPress event formats happening in your local community? <a href=\"https://make.wordpress.org/community/2023/08/30/the-nextgen-event-project-your-ideas-your-wordpress-community/\">Get inspired by these creative concepts</a> and <a href=\"https://wordpressdotorg.survey.fm/next-generation-of-wordpress-events\">share your ideas</a>!</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>Core team members <a href=\"https://make.wordpress.org/core/2023/08/31/proposal-an-update-to-the-field-guide/\">suggested updating the WordPress Field Guide</a> by publishing it earlier in the development cycle and introducing a simplified Field Guide on the WordPress Developer Blog. Feedback is open until September 15, 2023.</li>\n\n\n\n<li>Help test the <a href=\"https://make.wordpress.org/core/2023/09/05/call-for-testing-performant-translations/\">new Performant Translations plugin</a>, which aims to make localized WordPress sites faster.</li>\n\n\n\n<li>A new proposal aims to <a href=\"https://make.wordpress.org/support/2023/08/proposal-for-updated-support-guidelines/\">refine and update WordPress’ support guidelines</a>. You can provide your input by October 1, 2023.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/09/06/mobile-team-update-september-6th-2/\">Version 23.2</a> of the WordPress mobile app for iOS and Android is ready for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Training team seeks feedback on the first learning pathways outlined to improve the Learn WordPress educational experience. <a href=\"https://make.wordpress.org/training/2023/08/24/looking-for-feedback-learning-pathway-outlines/\">Share your thoughts by September 15, 2023</a>.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>On August 22-23, a group of WordPress contributors gathered at the <a href=\"https://communitysummit.wordcamp.org/2023/\"><strong>Community Summit</strong></a> to discuss key topics concerning the project. Read the notes from each session and join the conversations at <a href=\"https://make.wordpress.org/summit/\">make.wordpress.org/summit</a>.</li>\n\n\n\n<li>Following the Summit, Washington, D.C. hosted <a href=\"https://us.wordcamp.org/2023/\"><strong>WordCamp US 2023</strong></a> from August 24-26. This event brought together nearly 2,000 attendees for a Contributor Day and two conference days filled with engaging <a href=\"https://www.youtube.com/playlist?list=PL1pJFUVKQ7EQWcZBkBtb9YQlziKJ7nvpv\">sessions</a>, conversations, and <a href=\"https://twitter.com/WordPress/status/1695145857232904260\">open source art</a>. Saturday’s agenda concluded with keynotes by WordPress co-founder Matt Mullenweg and Executive Director Josepha Haden Chomphosy and a subsequent Q&amp;A session. <a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">Check out the event recap for highlights</a>.</li>\n\n\n\n<li>Join #WPDiversity with a free online <a href=\"https://www.eventbrite.com/e/speaker-workshop-for-indian-women-in-the-wordpress-community-sept-23-24-tickets-633636773647\">speaker workshop for Indian women in the WordPress Community</a>. The event will take place on September 23-24, 2023.</li>\n\n\n\n<li>The WordCamp Asia 2024 organizing team opened calls for <a href=\"https://asia.wordcamp.org/2024/call-for-speakers-is-now-open/\">speakers</a>, <a href=\"https://asia.wordcamp.org/2024/volunteer-registrations-are-open/\">volunteers</a>, <a href=\"https://asia.wordcamp.org/2024/call-for-sponsors/\">sponsors</a>, and <a href=\"https://asia.wordcamp.org/2024/call-for-media-partners-is-now-open/\">media partners</a>.</li>\n\n\n\n<li>Be sure to visit <a href=\"https://central.wordcamp.org/schedule/\">WordCamp Central</a> to find out about upcoming WordCamps.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join Josepha Haden Chomphosy in <a href=\"https://wordpress.org/news/2023/09/episode-61-community-summit-all-at-washington-d-c/\">Episode 61 of WP Briefing</a> as she discusses her takeaways from the Community Summit.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this Month in WordPress: <a href=\"https://profiles.wordpress.org/rmartinezduque/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>laurlittle</a></em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Sep 2023 10:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes Martínez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"Do The Woo Community: Wearing Attendee and Sponsor Hats at WCUS with Adam Warner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76476\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://dothewoo.io/wearing-the-attendee-and-sponsor-hat-wordcamp-us-adam-warner/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:430:\"<p>Adam joins me for a candid conversation about WCUS and some reflections from being both an attendee and a sponsor.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wearing-the-attendee-and-sponsor-hat-wordcamp-us-adam-warner/\">Wearing Attendee and Sponsor Hats at WCUS with Adam Warner</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 11 Sep 2023 09:09:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"Gutenberg Times: Gutenberg Changelog #89 – Gutenberg 16.6, default theme and Font Library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=25552\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-89-gutenberg-16-6-font-library-default-theme/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:42696:\"<p>Nadia Maya Ardiani and Birgit Pauli-Haack discuss Gutenberg 16.6, the new default theme Twenty-Twenty-Four, the Font Library and other upcoming features.</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-89-gutenberg-16-6-font-library-default-theme#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-89-gutenberg-16-6-font-library-default-theme/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Nadia Maya Ardiani</strong>&nbsp;</h2>\n\n\n\n<p><em>contributor on the training team and WordCamp Asia, and content writer in Hostinger.</em></p>\n\n\n\n<ul>\n<li><a href=\"https://twitter.com/inyongski\">Follow on Twitter</a></li>\n\n\n\n<li><a href=\"https://www.instagram.com/sebutsajamaya/\">Follow on Instagram</a></li>\n\n\n\n<li><a href=\"https://www.linkedin.com/in/nadiamayaardiani/\">On LInkedIn</a></li>\n\n\n\n<li>WordPress.org: <a href=\"https://profiles.wordpress.org/ardianimaya/\">@ardianimaya</a>&nbsp;</li>\n</ul>\n\n\n\n<p><strong>Hostinger Experts series: </strong></p>\n\n\n\n<ul>\n<li><a href=\"https://www.hostinger.com/blog/michelle-frechette\">Michelle Frechette: From an Active Volunteer to a Diversity Advocate</a></li>\n\n\n\n<li><a href=\"https://www.hostinger.com/blog/birgit-pauli-haack\">Birgit Pauli-Haack: Fostering Community Spirit Through Knowledge Sharing</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Community Contributions</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Introducing Twenty Twenty-Four</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/top-agencies-join-forces-to-publish-free-guide-on-wordpress-for-enterprise\">Free Guide on WordPress for Enterprise</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Gutenberg 16.6</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/06/whats-new-in-gutenberg-16-6-06-september/\">What’s new in Gutenberg 16.6? (06 September)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-16-6-introduces-block-hooks-improvements-to-toolbars-on-nested-blocks\">Gutenberg 16.6 Introduces Block Hooks, Improvements to Toolbars on Nested Blocks</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Documentation updates: </h2>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/\"><strong>Documentation for Block Variations</strong></a>&nbsp;</li>\n\n\n\n<li>&nbsp;<a href=\"https://developer.wordpress.org/block-editor/how-to-guides/enqueueing-assets-in-the-editor/\"><strong>Enqueuing assets in the Editor</strong></a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">In the works</h2>\n\n\n\n<ul>\n<li><a href=\"https://gutenbergtimes.com/call-for-testing-of-the-new-font-library/\">Call for testing of the new Font Library</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/53934\">Block Supports: Add background image support to Group block</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, hello and welcome to our 89th episode of the Gutenberg Changelog Podcast. In today&#8217;s episode, we will talk about Gutenberg&#8217;s 16.6 and some community contributions as well as features that are still in the works, that we wanted to highlight today. I&#8217;m your host Birgit Pauli-Haack, curator at the Gutenberg Times and WordPress developer advocate, and a full-time core contributor for the WordPress open source project. A special guest today is Nadia Maya Ardiani, contributor on the training team and WordCamp Asia, and that&#8217;s where we met for a chat at dinner, a lunch, and we did&#8230; Yeah, it was just fabulous to meet Maya and we always found a topic to talk about and to laugh as well. I&#8217;m so happy you join me today to review the Gutenberg plugin release and connect about WordPress. So greetings to Indonesia. How are you today?</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Thank you, Birgit, for having me. It&#8217;s so good to be here, and thank you as well for being the first WordPresser ever to be featured in Hostinger&#8217;s WordPress Expert Article Series.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, thank you for having me. Yeah, it was a fun interview.</p>\n\n\n\n<p><em>Nadia Maya Ardiani:</em> Because it&#8217;s only fitting to start the series with one of the people who have been doing such significant contribution to the platform, and that&#8217;s you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Thank you. So what else do you contribute to on WordPress?</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Okay. So yeah, I&#8217;m a contributor on the training team and in the team I&#8217;m also a translator coordinator for Indonesian locale. And yeah, I love contributing for the training team because I enjoy sharing complex information in a more accessible way, making the knowledge more accessible for a wider audience, which is also related to my day job as a content writer in Hostinger. And yeah, in my day job, I write WordPress tutorials in the form of WordPress website articles and script for YouTube videos. And I also write about WordPress community activities like Word camps and about WordPress journeys of awesome WordPress community members, that&#8217;s like you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you. Thank you. I know that another interview was with Michelle Frechette on the Experts Series. Yeah, great job there as well. It&#8217;s really fabulous to kind of follow up on that. Yeah, I&#8217;m so glad we stayed in touch after WordCamp Asia and you just returned from WordCamp US. So how was it and what are your takeaways for that?</p>\n\n\n\n<p><em>Nadia Maya Ardiani:</em> So yeah, it&#8217;s my first word WordCamp US, so it&#8217;s very new to me. And I also volunteered this time, and I didn&#8217;t get to attend a lot of sessions, but it always awesome to meet and have a chat with fellow WordPress enthusiasts because you don&#8217;t get to meet them every day. And I think it&#8217;s one of the WordCamp’s struggle to decide between attending the session or talking and catching up with everyone.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I know I have this every time that I have my sessions checked off to say, &#8220;This I want to do,&#8221; and I put them in my calendar and then I stay in the moment with talking with somebody and then whoosh, the time is gone and I have to catch the livestream. Totally get it. And for WordCamp US, there is a lot of FOMO that I had to endure.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Yeah, yeah. There are actually lots of interesting sessions, but as we know, we can just catch up with the sessions in WordPress YouTube channel or WordPress.tv. But yeah, I actually really want to see the one with NASA and the White House because we get to see WordPress implementation in those two websites. Because for me, it&#8217;s the most interesting thing about the session is we can see how WordPress is really for everyone because many of us in the end users, we think WordPress is only for hobbyists, but it&#8217;s actually can be for big organizations like this that require fairly customized website and high level security.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So true, so true. Yeah, the bandwidth is really broad. I&#8217;m glad you got to see that.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: And I also really love about the contributors day because as always, it&#8217;s the time for us to work together with other contributors who we usually only meet on screen. And so far the WordCamp US is kind of unique because usually we all gather in one big room, all of the teams are gathering in the same place. But this time teams which works closely related, were spread in multiple rooms. I actually love the comradery of being in the same room as all contributors, but this time I also love it because there was no confusion about which table belongs to which team, and also more space or creating breakout room. For example, in training team, after onboarding the new team members, we can split into this is the people who are interested to be content insider. This is for people who are interested to be content creator. And also since the training team is in the same room with the Docs team, there we can discuss more about cross collaboration effort regarding how to better work together with the backlink material and each other.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, that&#8217;s interesting. Yeah, I can see that there&#8217;s some overlap between the Docs team and the training team, and the more we can streamline the processes between the two, I think the better it is for WordPress users to find the right material at the right time. Awesome. Well, thank you so much for this report back from WordCamp US and how you found it from a contributor point of view. Yeah.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Announcements</h3>\n\n\n\n<p>Dear listeners, we have one announcement that we wanted to share with you is about WordPress 6.4. So WordPress 6.4 is in less than three weeks away. WordPress 6.4 beta is only three weeks away. Don&#8217;t get scared. The last Gutenberg version for features will be 16.7. Today we are talking about 16.6, so there&#8217;s only one more Gutenberg plugin release to go and release candidate for 16.7 is scheduled for September 20th.</p>\n\n\n\n<p>That&#8217;s one week longer than the usual two-week schedule. And so all the new features will need to be merged by that time. And after that, only bug fixes and fixes for blast features can be added to the WordPress release. So it&#8217;s the time to test all the Gutenberg plugins versions that go into, it will be 16.2 all the way to 16.7 and whatever bug fixes come in 16.8 and nine.&nbsp;</p>\n\n\n\n<p>The final release or the release for 6.4 is scheduled for November 7th, and so that&#8217;s still about a month and a half away, two months away. So just so you&#8217;ll get the timeline a little bit, we will repeat this on the next shows as well when we&#8230; Next time is with Tammy Lister. She&#8217;s on the editor tech lead, so we will have some more information about 16.4.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: It&#8217;s my first time to see how many improvements that come with one version of Gutenberg. So it&#8217;s like, &#8220;Oh my God.&#8221; So every time we release one version of WordPress, that must be a huge improvement. So by seeing the rundown, that&#8217;s the first time I realized that how much is the improvements.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Community Contributions</h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s a change log and that can be overwhelming indeed. And the last five versions kind of go into WordPress. So yes, so 16.2 and three had major jumps in improvements to the site editor and to the block editor. Especially because 6.3 and 6.4 wrap up the phase two of site editing. But 6.4 also will ship with the new default theme and amply named 2024, and it&#8217;s also expected to be in early November together with the 6.4 release, the designs are already available and you can follow up on the introduction post on the Make WordPress core website. We mentioned it on one of the previous episodes as well, but I really like to talk to you about, Maya, you looked at it and what do you think about the new theme?</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: As an end-user, I&#8217;m really excited to use this theme because this one is aimed to be a multi-purpose team, right? I sold three use cases in the Make WordPress website, one specifically tailored for entrepreneurs and small business, one for photographers and artists, and one for writers and bloggers. So it provide a better look into how the theme would look like when it is used to display lots of images, when it&#8217;s used to show multiple chunks of text and how it may look like as a landing page, which is so cool because I can instantly imagine, &#8220;Oh, this is the stuff that I can do with this theme.&#8221; Since it&#8217;s a collection of templates and patterns which combine into a theme, it&#8217;s even cooler because the patterns include in it, it has various home templates or different use cases such as out page and then project overview are SVPs. So yeah, it&#8217;s basically very handy for no-code people because we can just&#8230; Yeah, I want to make this, I want to make this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I think that&#8217;s exactly what you&#8217;re saying is that it gives you a vision or an inspiration of what your website could look like when you use that theme and then gives you all the tools. I like that it also thinks about&#8230; Or the creators think about the full page templates so you don&#8217;t have to assemble all the things.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Yeah, it&#8217;s very nice to not have to create everything from scratch because sometimes it can be intimidating to start from a pure blank slate like that. At least that&#8217;s for no code people like me. But this one is the default color and typography style are already versatile and very timeless. It gives professional and elegant flare in general with the understated color and the sunset of point variation. So it can be used for any, many needs.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And with the site editor providing all the design tools, you can really make it your own in terms of the look and feel. And I really like that. I think it&#8217;s the first default theme that&#8217;s not very opinionated about the design that is only for a niche or for a certain topic or so. It&#8217;s more really that is actually the purpose that you just said is that many people can see themselves building with that theme, and I am really happy that comes out of it also for you. Yeah, there is the Figma I can share in the show notes. I&#8217;ll share also the link to the Figma file where you can kind of browse the designs. It&#8217;s right now in development, the report from the leads of Jessica Lishick and Maggie Cabrera and they both were at WordPress US Contributor Day and they had about 31 contributors at the theme table who wanted to work on the theme.</p>\n\n\n\n<p>So there is some rapid development going on, and I will also share the GitHub report link where it&#8217;s all happening with the issues and the PRs and everything, and where you can see all the discussions. The GitHub report will closer to release candidate, it will disappear and then it will be on track because that&#8217;s just for development. Default themes are then housed with the core files on a track. Yes, in the repo, yes. Another community contribution gets you all the way from that no-code site builder, single site builder, private person to all the way to the enterprise level of using WordPress. And there is a new guide for WordPress for Enterprise Together.</p>\n\n\n\n<p>So where the major WordPress agencies that deal with enterprise clients and there are Big Bite and 10Up and Alley, Human made Inpsyde and XWP and they got together and in WordCamp Europe as well to think about can WordPress be advertised or shape the conversation with enterprise IT people and CEOs about using WordPress for content management system on their large scale organizations. And they came together and created a free guide for WordPress for enterprise. It highlights all the high profile companies like CNN, Vogue, Google, Spotify, the White House, and many more, now NASA and also responds to some of the misconceptions that are still out there. Mainly the one that it&#8217;s not secure that it&#8217;s only for blogging and all that kind of thing. So it&#8217;s a really good guide that you as a small agency can certainly also use in parts for talking to your clients and to your customers about things.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: I like it that this guide is easy to read because sometimes people from big enterprises are not really tech-savvy. So having it with layman&#8217;s term, it can deliver the knowledge better to a wider audience about the possibilities for creating a customized platform to fit any organization. And yeah, I checked the chapters in good discussion about platform security, scalability, internationalization, solution, cost and value. Those are the stuff that enterprise really cares about. I think it shows one of the beauty of the WordPress community, everyone&#8217;s coming together for it, but to constantly improve the platform and to share to others that this is a solution you can use. And it&#8217;s really nice to see how these agencies provide insights related to aspects that are important for enterprises.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And I also like that they kind of highlight the open source part, which scares enterprise, but the open source part that there are hundreds of contributors that are actually maintaining the code and doing all the performance testing. We have this awesome performance team that has brought down the load times of WordPress out of the box just for 6.3, around 20%, which is huge when you think of the millions and millions of websites that use WordPress. And I saw a statistic that already 50% of WordPress is now 6.3 installations. So the community has really reacted fast to the new versions and that will also be for 6.4. So we will share of course the article from WP Tavern that talks about it. We also share the blog post about it and with a link to download it. You don&#8217;t need an email address to download it, so it&#8217;s all free out there for you to use and to contemplate. Yes.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s Released &#8211; Gutenberg 16.6</h3>\n\n\n\n<p>Which brings us to the section what&#8217;s released and right now, we&#8217;re talking about Gutenberg 16.6 that was released earlier this week and Vincente Canales was the release manager for this. And in his release post he shared the change log and as well as some highlighted things. And we follow suit of course, and the first thing that we wanted&#8230; Most of it, there&#8217;s not really some big stuff coming in 16.6, but it was some great quality of life changes that make working in it much smoother and less confusing and more consistent together. But there are few highlights that we wanted you to know about.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p>So the first one is it says I needed to read through the PRs and look at the videos to try it out myself to actually actually know what it means. So it says, &#8220;Capture toolbars,&#8221; in the quote block or navigation block. What it means is that the toolbars for child blocks or inner blocks are now seamless attached to their parent block and offering a more intuitive and organized editing experience. They don&#8217;t jump around that much, which is sometimes a little disconcerting and distracts you from the work that you actually wanted to do. Right now they are in place for the navigation block, the list block, and the quote block.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Yeah, I think this one makes the publishing experience way more enjoyable. Because sometimes you just move a little and the block will follow through like, &#8220;Oh my god, can you just stay right there?&#8221; And I publish articles in daily basis, but it&#8217;s only recently that I discovered the top toolbar feature that we can activate by clicking, what&#8217;s the name?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The options.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: In the right panel. Yeah, the block tool work can be annoying sometimes. So having this improvement capture toolbars, this will be&#8230; And making the toolbar staying at the same nearby spot like this, I will definitely prefer this one than the following.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, me too. I found that some users are actually struggling with the concept that depending on which block is focused, that they have a different toolbar from the parent block. And to get to the parent block, you have to know that you need to click on the leftmost kind of button to get to the parent block again. And I think I haven&#8217;t found a better way to get to it to kind of imagine a better UI for that. But I think with tying both toolbars together and just switch in place and not also move it, it&#8217;s a much better experience. Yes, definitely. Another one is that for the query pagination block, it was that you only had one or two&#8230; The pagination block is the block that you have underneath your loop block or the query loop where it says, &#8220;Okay, get me next pages,&#8221; from that query from that loop of next pages of articles.</p>\n\n\n\n<p>And when you look at it, there were only two&#8230; You only saw the first two ones, and then the last two ones. But you couldn&#8217;t click to, if you say, the third one or the fourth page because you knew it was things on there you had to click on next, next, next to&#8230; You didn&#8217;t find a&#8230; And now a user can determine how those numbers in the pagination block are actually organized. You can say, &#8220;Okay, give me four numbers in between.&#8221; That&#8217;s a really good improvement considering that that was possible before in the classic theme very much so. But this is kind of getting it all feature priority and it really is a good improvement. It&#8217;s such a small thing, you would think, but navigating a list of posts deeper into it, they&#8217;re not just the first page, sometimes is really needs some support, some better support there.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Sometimes more like things that at the front end it seems like a very simple change, but I believe that under the hood that there must be many things going on, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And then now you have in the sidebar, you have additional fields where you can put in numbers and some more explanation, if my explanation wasn&#8217;t helpful at all. And the next part is that the list view now has a keyboard shortcut for duplicating blocks. So if you are working through a list view by keyboard and you now don&#8217;t need to change controls to duplicate a block, you can just use command shift and D, and then that block that was just focused is duplicated. This definitely helps with rapid content creation and laying out some articles.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: As a content writer, I definitely agree with this one. This will be very time-saving.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Super, yeah. 16.6 Gutenberg also adds a custom taxonomy for user created patterns. So WordPress 6.3 came with the feature that you now could create synced and unsynced patterns, but if you have three or four or 15 of those, it was hard to sort through them. So now you can use some taxonomy labels for your creative patterns. So you can give other editors on your site a little bit more help with what are those patterns that Birgit created and now you can help them to be a little bit more organized here.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: So this can be for the synced and unsynced patterns?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Yeah, this will be&#8230; Having a feature to organize it, it definitely will be beneficial for the content creators also because we can easily choose which one we want to use.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, and you can drill down because I can see that an organization has created at least 10, 20 patterns depending on how the different content they provide. And the beauty of it is, it&#8217;s actually based on the default taxonomy patterns, not patterns, API that comes with WordPress because the patterns are custom post type. So the built-in taxonomy is now just surfacing on the editor. There was not a whole lot of&#8230; There was development being done just to make it into the site editor, but the underlying backend was already there. So it&#8217;s good to have a fallback like that.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Bug Fixes</h3>\n\n\n\n<p>So now we are coming to the bug fixes and there&#8217;s just a few that we wanted to point out. Maybe just one, no, maybe two or so. Do you want to take that?</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Okay. So for the bug fixes, I like this one about the post notification link, which is the remove unnecessary space between rows and label. I think for some end users this might look like a very simple improvement that almost unseen, but I believe for those who work around design a lot will be happy with this. &#8220;Finally, I already feel it sometime ago.&#8221; Because it&#8217;s only a very tiny character, isn&#8217;t it like the space between the arrows and labels? But once it removes it, it&#8217;s like, &#8220;Yeah, this is how it should look.&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it gives you a consistent look and don&#8217;t really get that. That&#8217;s fixed now. And then also for the block styles, there&#8217;s the preview of the popover is now working also with right to left sites.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Yeah, I think this is also one of the great examples of a form of striving for inclusivity and equality in WordPress because it makes a site building experience equal for everyone, whatever language you use, including the right to left languages like this. So when your site using the right to left languages, you will have the exact same experience as everyone in the world.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And sometimes that kind of falls a little bit through the cracks. So some head bubble for those who record those issues on the GitHub report so they can be fixed if they are not working right. In the site editor, there&#8217;s one bug fix.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: About the unified delete button style in the dropdown menu and making it red. So I think it&#8217;s also a nice improvement, especially for end users who still learn to use WordPress for the first time because it&#8217;s easier to tell the effect of clicking this button. When you see it previously it&#8217;s blue. So people might just, &#8220;Okay, I will just try to delete this,&#8221; and turns out it delete all the stuff that they actually don&#8217;t want to delete. But by making it red, it&#8217;s making&#8230; I think it&#8217;s related to psychology of color, people can be more considerate when they offer this button. This one will do a significant effect to my content.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s kind of, &#8220;Stop. Think what you&#8217;re doing.&#8221;</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Oh, what is it? What is it? It&#8217;s red. I will avoid doing something with this because it can avoid accidental deletion.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Experiments</h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And that&#8217;s part of really the small changes that have big outcomes. So the Gutenberg 16.6 also brings a new feature, new API and that&#8217;s called lock hooks. It was introduced one or two Gutenberg versions earlier and labeled as order inserting blocks. And the PRs that are accompanying it are still referring to that, but it&#8217;s on activation plugins now can have the capability to order insert blocks, enhancing the integration and automation between the plugins and the Gutenberg editor. So the examples that you see in the PRs&#8230; And I would recommend to look through the PRs to kind of see how it all works. And the change log has the list of the PRs in there. So what is it useful&#8230; And I think we talked with Ellen about it, Ellen Bauer on the previous episode about it. So you can add a like button to a comment section or a card icon to the header with this API and any other thing that you want to add to a block that&#8217;s automatically added for the user.</p>\n\n\n\n<p>The user now also has with the&#8230; They created now the block inspector panel and have a plugin section there. So it identifies the plugin that added a block and you can toggle the appearance or disappearance of it on your templates and on your posts. So depending on what the use case is for this plugin that you installed on your site. So this very much expands the capabilities of the block editor for plugin developers outside of adding custom blocks or adding additional features in the sidebar. Now you can add a few content as well. So this is a really good new feature and it will come to 6.4. It definitely needs some major testing. So if you are having a test site and you want to check it out and yeah, please report back on what your findings are and if you tripped up by things.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: So here in the PR, the example is log in logout, card and checkout, but it&#8217;ll be different for each plugin? For different plugins?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, so there&#8217;s an API where a plugin developer can say, &#8220;Okay, I want this content or this particular feature added to a columns block.&#8221; Or to a paragraph block. For instance, just an anchor link to every paragraph. You can write a plugin and say, &#8220;Okay, for each paragraph add this anchor link on the right-hand side.&#8221; And then a user can install that plugin and then automatically has that on their blog and can now reference certain paragraphs. So some people do blogging more like a diary where they have all the sorts of a day in little paragraphs or in a cluster of paragraphs and say, &#8220;Okay, today I wrote also about my adventure of riding the bike down the hill on a certain hill,&#8221; and then want to link to that through Twitter or through Instagram because there&#8217;s also a picture to it.</p>\n\n\n\n<p>So you can go back to the blog and read a little bit about it. So that&#8217;s one tiny use case. Another one is, as I said, the like button for comments. Normally comments don&#8217;t come with like buttons. But you can build a plugin that says, &#8220;Okay, every comment gets a like button for me and I want it at the top of it or on the bottom of it.&#8221; And that&#8217;s all in the API controls. And then when it&#8217;s installed and the user wants to use it can also say, &#8220;For this paragraph, I want to toggle in and off. I want to disable that particular added block for this particular paragraph. And then for the next block I want it again.&#8221; So it&#8217;s kind of a beginning of a new interface or a new way to customize the block editor.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p>Speaking of development, 6.3 brought a few pickups to the surface that with the&#8230; Enqueuing of assets in the editor and the CSS and Nick Diego updated the documentation and how to guide to and queue assets in the editor and best practice or how it&#8217;s actually supposed to work, especially now with the iFrame editor in the post editor as well. There were some early adopters of the block editor created a few workarounds, the early restrictions that were there. And now with 6.3 or the iFraming of the post editor, some of those don&#8217;t work anymore as one would hope. So here&#8217;s a how to guide on how to enqueue assets in the editor after 6.3.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: So this how to guide is targeted for developers? Or for everyone who wants to learn about Gutenberg in general can also try to learn this?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh yeah, sure, sure. It&#8217;s a website, so the website doesn&#8217;t know who&#8217;s coming in. So it&#8217;s on the developer&#8230; The link goes right now to the Gutenberg repo where the pages, but I will share the link in the show notes where the actual documentation page was created. So it&#8217;s in the realm of the other documentation of the block editor. Yeah, it&#8217;s definitely helpful when you start out thinking about your theme development or your plugin development and you have additional assets like JavaScript files, CSS files to go with those entities and how to do it to control your iFrame editor. There has also been an update on the block variations API, and that has been&#8230; Block variations have been around since the beginning of the block editor where you can modify in a core block that then add additional feature sets or styles or just kind of different behavior to it.</p>\n\n\n\n<p>And the block variations FPI had been updated, but this goes well with a new article on the developer blog called An Introduction to Block Variations where Nick Diego walks you through certain use cases on how to use it. So how to create a block variation, how to unregister. So you could use the block variation. So if a simple example is you have a button, you want the button to have a certain style, you can certainly do this through the theme.</p>\n\n\n\n<p>But you can also say, &#8220;Okay, I want to unregister the core button and I want my block variations for the core button to be the default.&#8221; So it shows up in the inserter as a core button, but it will always have the right color on the border or the background or the right font size that you have decided on the design of it. And the user doesn&#8217;t have to select between the two they just have one. Same could be with a code block or a verse block. You can really have quite a few methods and attributes that you can use to create those lock variations. Yeah, I learned quite a bit from the article.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: No, I just wanted to say that this resource is pretty comprehensive. We can learn many stuff about the block variations from the basic to the putting it all together and everything. We can check it here. So yeah, it&#8217;s great.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it also helps you how to control the icons for it or how the sidebar is behaving. So yes, it&#8217;s a really good article. All the articles on the developer blog, that&#8217;s actually a very rather new entity on the wordpress.org site. It only has been around for eight months, give or take. Official launch was actually March, so it&#8217;s only been around for five months officially, but we started in November with it. And there are quite a few blog posts now that are tutorials and go a little bit deeper on then documentation help you picks up the developer from a different place, from a beginner place and go all the way to advanced. Or say, &#8220;Okay, this is your use case.&#8221; There are a series of blog posts as well as standalone posts. And you can also learn about the slot fields. What&#8217;s slot fields? Well, it&#8217;s the spaces in the sidebar of a block where you can add additional features, fields and all that.</p>\n\n\n\n<p>So the developer block is definitely something to check out if you are a developer and extending the block editor. And yeah, this concludes the change log for 16.6. We are through that.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s in Active Development or Discussed</h3>\n\n\n\n<p>And as I said at the beginning, we also wanted to discuss a few things, or two things. No, actually three that are in active development. And the first one is a big feature that is announced slated for 6.4. The contributors have been working on it for quite a while, almost a whole year to get font management into WordPress. Meaning upload funds, make them available for blocks, make them available for templates, and then also delete funds, and have them across themes. So you are not depending on a theme developer to provide you with the right fonts. You can as a site owner also make different choices there. And I will share with you a link to a PR that kind of puts it all together, how it all works.</p>\n\n\n\n<p>And Jeffrey Pearce also just made a call for testing on Twitter where he provided a link to a WordPress playground site with the configuration to test this successfully already in place. Because you need to make changes to the WP-config file and then you need to enable the plugin for it, the experiment for it and all that. So there&#8217;s kind of a set-up manually to be done, but this link to the WordPress playground gives you the PR, or the version of Gutenberg that has the PR in it as well as the right setup. And then you can test it, you can upload fonts, you make them available through the interface. You can use them on pages, on posts and on templates and see if the font on front end and editor actually would display correctly. And anything that you find that&#8217;s not working right, report that back to the PR so they can go and fix it.</p>\n\n\n\n<p>Once it&#8217;s merged, so right now the PRs are still in the works and a lot of people are testing it, but it could use some more testing. If you listen to this and the PR has already been merged, it will be available through the Gutenberg nightly plugin version that you get on the Gutenberg Times, and then you can start testing it on your normal, like any Gutenberg plugin version on your test site. And my favorite tool for testing is actually local WP from the WP Engine and Flywheel folks. That has been a tremendous help to go through all those testing. So font library is a big, big step forward for WordPress and any help you can give to testing it would be really appreciated.</p>\n\n\n\n<p><em>Nadia Maya Ardiani:</em> So we can also use font library in playground?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: With the link that&#8230; The link is a Bitly link. It&#8217;s shortened because it&#8217;s actually 15 lines long. It&#8217;s bit.ly/text-font-library, and then it gives you a new WordPress site and then you can use it and test it. You cannot install other plugins there. You cannot install themes. So you would have to test it with the default theme Twenty Twenty Three. And the second part&#8230; It&#8217;s only two things, is a lot of people, especially content creators were really waiting for this, it&#8217;s the adding a background image to a group block. It&#8217;s coming, it&#8217;s already available in the Gutenberg nightly because the feature has already been merged with trunk. It&#8217;ll be released with 16.7 Gutenberg plugin. And if you can provide user feedback, that will be really great. And if the provided user feedback doesn&#8217;t reveal any big issues with that new feature, it will also arrive in WordPress 6.4 with the next upgrade on November 7th, 2023. How do you like that, Maya?</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: I will definitely use this. I can see myself using this, I don&#8217;t know, for my company, for my day job, I don&#8217;t know about that. But so I have a website that is just to play around, my test site. I really like it. So I think I will definitely use this because it&#8217;s like, yeah, adding more creativity fuel to my toolkit.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I can see that there are some very, very subtle backgrounds that could happen on different paragraphs, like wallpaper in a house or something like that where you can change that for a different group of posts or for&#8230; If you wrap a quote post into a group block, then you can add a background image to it, and that background image could have a photo of the person who gives the quote. So you don&#8217;t have to use backgrounds and fiddle around with all the blocks, you can just put it on the background image and then upload that to the quote block. And yeah, I really like it.&nbsp;</p>\n\n\n\n<p>So we are at the end of the show. I just wanted to make sure people, when they want to connect with you, what would be a good place to meet you online, Maya?</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: So I&#8217;m on Twitter and also I&#8217;m on Instagram. So yeah, I think I will&#8230; And on LinkedIn also, so in three places. So yeah, I will share the link to you so we can put it in the show notes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Awesome. Awesome. Thank you so much. As always, the show notes will be published on Gutenbergtimes.com/podcast and this is the episode 89. And if you have questions, suggestions, or news that you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. And there was a time when we had quite a few people add reviews about the podcast on different podcast websites like Stitcher or Apple or Google. It would be time to do another round of reviews. If you like what you hear and get value out of this podcast, please submit a review to Apple, that&#8217;s probably the most prominent one, to iTunes or podcast, and that would be really lovely. And as a bonus, we will read them in our next show. So yeah, come on then.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Give a little shout-out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Give a little shout-out. Yeah. So Maya, thank you so much for joining me today. It was lovely to have you on the show and give your input and have opinions will travel that&#8217;s always beneficial at WordPress. Yeah, and I thank you all for listening and I&#8217;ll hear you in two weeks. We won&#8217;t have a 16.7 then, but we will have Tammy Lister on the show and we will talk about WordPress 6.4 and the whole process. And I wish you all well, take care and goodbye.</p>\n\n\n\n<p><em>Nadia Maya Ardiani</em>: Thank you, Birgit. Forget the pleasure is all mine.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Thank you.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Sep 2023 08:35:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"Gutenberg Times: Font Library call for testing, Gutenberg 16.6, OmniForm and WooCommerce Blocks 11.0—Weekend Edition 267\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"https://gutenbergtimes.com/font-library-call-for-testing-gutenberg-16-6-omniform-and-woocommerce-blocks-11-0-weekend-edition-267/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15030:\"<p>Howdy, </p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/6-4/\">WordPress 6.4 release</a> is fast approaching. This week I tested two new features. I am excited about that content creators and designers will be able to <a href=\"https://github.com/WordPress/gutenberg/pull/53934\">add a background image to group blocks</a>.  I see a few more decorative, wall paper like backgrounds for quotes, or call out paragraphs in our future. Furthermore, site owners and theme builders can look forward to a new Font library with font management capabilities via the Global Styles sidebar. </p>\n\n\n\n<p>You can upload fonts and server them to visitors locally and keep within privacy guidelines. <strong>Jeffrey Pearce</strong> posted <a href=\"https://twitter.com/jeffikus/status/1699864919628202063\">A call for testing</a> on X (formerly Twitter). For more information, I added some details in this<a href=\"https://gutenbergtimes.com/call-for-testing-of-the-new-font-library/\"> post on this site.</a></p>\n\n\n\n<p>For novices to the intricacies of Typography, <a href=\"https://developer.wordpress.org/news/2023/07/make-your-sites-typography-make-a-statement/\"><strong>Mary Baum</strong> started an exciting series </a>on the Developer Blog. </p>\n\n\n\n<p>Hope all is well. Cu you on the Interwebs. </p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-developing-gutenberg-and-word-press\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-gutenberg-16-6\">Gutenberg 16.6 </a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<p>Last Monday, I was part of <a href=\"https://wpbuilds.com/2023/09/05/this-week-in-wordpress-266/\"><strong>This Week in WordPress #266 &#8211; &#8220;Weirdy bespoke CMS&#8221;</strong> </a>with <strong>Katie Keith</strong> and <strong>Bob Dunn</strong>, hosted by the fabulous <strong>Nathan Wrigley</strong>.  We talked about last week&#8217;s news around the WordPress space. Gutenberg updates, about LMS Working group, and Automattic&#8217;s <a href=\"https://ma.tt/2023/08/one-hundy\">One Hundy </a>(100-year plan) Bob&#8217;s booth take-over and Joost de Valk and Marieke van de Rakt joining Post Status, <a href=\"https://bigbite.net/wordpress-for-enterprise/\" target=\"_blank\" rel=\"noreferrer noopener\">Enterprise Guide to WordPress</a> and a lot more. It was great fun and quite enlightening. </p>\n\n\n\n<a href=\"https://wpbuilds.com/2023/09/05/this-week-in-wordpress-266/\"><img width=\"652\" height=\"367\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/09/266-This-Week-in-WordPress-Bob-Dunn-Katie-Keith-Nathan-Wrigley-Birgit-Pauli-Haack.jpeg?resize=652%2C367&ssl=1\" alt=\"Screenshot of This week in WordPress 266 with Bob Dunn, Katie Keith, Birgit Pauli-Haack and Nathan Wrigley\" class=\"wp-image-25466\" /></a>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-developing-gutenberg-and-word-press\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Joen Asmussen</strong> again shared the work of the WordPress design team in his post <a href=\"https://make.wordpress.org/design/2023/08/28/design-share-aug-14-aug-25/\"><strong>Design Share: Aug 14-Aug 25</strong></a>.  You&#8217;ll find illustrations and links on </p>\n\n\n\n<ul>\n<li>the iterations on the new design for the themes directory, </li>\n\n\n\n<li>the way how to list user patterns by category</li>\n\n\n\n<li>the workflow to control styling nested elements through inheritance</li>\n\n\n\n<li>Better display for the audio component  and search results for the Openverse site. </li>\n\n\n\n<li>User interface to control the Lightbox feature for Image block</li>\n\n\n\n<li>Font Management for Google Fonts</li>\n\n\n\n<li>First round of designs for List views for the Admin space. </li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>After nearly  3.5 years of feedback loops, knowledge sharing, and community building and WordPress 6.3 concluding the Phase 2, <strong>Anne McCarthy</strong> outlines in her blog post <strong><a href=\"https://make.wordpress.org/core/2023/09/07/evolving-the-fse-outreach-program/\">Evolving the FSE Outreach Program</a>,</strong> what will happen next. Details on the timeline, the shift from new feature to adoption and the hand-off of future calls for testing to the WordPress test team, are all explained in the post. Anne McCarthy has been a fantastic community builder and communicator running this first of a kind outreach program.  Their work was groundbreaking and provided a blueprint future outreach programs can build on. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-gutenberg-16-6\">Gutenberg 16.6 </h3>\n\n\n\n<p>In his release post, <a href=\"https://make.wordpress.org/core/2023/09/06/whats-new-in-gutenberg-16-6-06-september/\">What’s new in Gutenberg 16.6? (06 September)</a>, <strong>Vicente Canales</strong> highlighted the new Block hooks, formerly known as Auto-inserted blocks, and improvements to the block toolbars by tieing the toolbars of child blocks to the parent block&#8217;s toolbar. </p>\n\n\n\n<p><strong>Sarah Gooding</strong> also reported on the Gutenberg 16.7 release in her article <a href=\"https://wptavern.com/gutenberg-16-6-introduces-block-hooks-improvements-to-toolbars-on-nested-blocks\">Gutenberg 16.6 Introduces Block Hooks, Improvements to Toolbars on Nested Blocks</a></p>\n\n\n\n<p>For this week&#8217;s <strong>Gutenberg Changelog episode 89</strong>, I had the great pleasure of welcoming <strong><a href=\"https://twitter.com/inyongski\">Nadia Maya Ardiani</a></strong> and my special guest. Ardiani is a content creator at Hostinger and contributor on training and documentation teams working on translations. We have been in touch since we met in person at WordCamp Asia. In this new episode, we tackled the Gutenberg 16.6 release and talked about more features in the works. The episode will drop into your favorite podcast app over the weekend. </p>\n\n\n\n<img width=\"652\" height=\"184\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/09/Screenshot-2023-09-08-at-13.46.21.png?resize=652%2C184&ssl=1\" alt=\"\" class=\"wp-image-25503\" />\n\n\n\n<p>TIL: The diner in Maya&#8217;s background is called <em>warkop/warmindo</em>, which is the short for <em>warung kopi </em>(coffee tavern) or <em>warung indomie</em> (instant noodle diner)</p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>?️ </strong> Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-89-gutenberg-16-6-font-library-default-theme/\">Gutenberg Changelog #89 – Gutenberg 16.6, default theme and Font Library</a> with Nadia Maya Ardiani  as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><a href=\"https://twitter.com/jrtashjian\"><strong>JR Tashjian</strong></a>, senior developer at GoDaddy, has been working on <strong>OmniForm </strong>for a while, and he just released it in the <a href=\"https://wordpress.org/plugins/omniform/\">WordPress plugins directory</a>. OmniForm specializes in essential form types, such as contact and feedback forms. The feature list includes: </p>\n\n\n\n<ul>\n<li>20+ form fields blocks, including text fields, checkboxes, radio buttons, and more</li>\n\n\n\n<li>Pre-built form templates or create your own from scratch</li>\n\n\n\n<li>Manage form submissions within the admin dashboard</li>\n\n\n\n<li>Email notifications for new form submissions</li>\n\n\n\n<li>Customize form styling</li>\n\n\n\n<li>Spam protection with Cloudflare Turnstile, hCaptcha, and Google reCAPTCHA.</li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Patricia Hillebrandt</strong>, code wrangler at WooCommerce, published the release notes for <a href=\"https://developer.woocommerce.com/2023/08/31/woocommerce-blocks-11-0-0-release-notes/\"><strong>WooCommerce Blocks version 11.0.0</strong> </a>With the latest release of WooCommerce Blocks, users can leverage the Product Collection Block and the improved interactivity of the Product Button to create appealing product displays and enhance the shopping experience on their websites. </p>\n\n\n\n<p><strong>Sarah Gooding</strong> reported on the new release for the WPTavern: <a href=\"https://wptavern.com/woocommerce-blocks-11-0-0-adds-product-collection-block-in-beta-10-9-0-integrates-product-button-with-the-interactivity-api\"><strong>WooCommerce Blocks 11.0.0 Adds Product Collection Block in Beta, 10.9.0 Integrates Product Button with the Interactivity API</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The <em>Torque Magazine</em> published <strong><a href=\"https://twitter.com/nschaeferhoff\">Nick Schäferhoff</a>&#8216;</strong>s post about <strong><a href=\"https://torquemag.io/2023/09/mastodon-and-wordpress/\">Mastodon and WordPress: 8 Ways to Make Them Work Together</a>.</strong> From site verification and social icons over displaying your feed on your site or your client&#8217;s sites, to automatically posting from WordPress to Mastodon, Schäferhoff gives comprehensive instructions and illustrations for a complete integration of WordPress and Mastodon. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On Learn.WordPress you can now watch the new tutorial:  <strong><a href=\"https://learn.wordpress.org/tutorial/intro-to-the-site-editor-and-template-editor/\">Intro to the Site Editor</a>. </strong>You can create and launch your entire site within the Site Editor. In this video tutorial, <strong>Wes Theron</strong>, provides you with an overview of accessing and using the Site Editor and you learn about all the tools you need. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/SteveJBurge\">Steve Burge</a></strong> published for KinshiPress the tutorial on how to <a href=\"https://kinshipress.com/time-to-read-block-wordpress/\"><strong>use a Time to Read Block in WordPress</strong></a>, via the Gutenberg plugin. </p>\n\n\n\n\n<p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><strong>Anton Plauche</strong> has published a detailed tutorial for responsive design implementation by extending the core columns block. In <a href=\"https://fullstackdigital.io/blog/how-to-build-responsive-designs-in-the-wordpress-editor-by-extending-the-core-columns-block/\"><strong>How to Build Responsive Designs in the WordPress Editor by Extending the Core Columns Block</strong></a>, Plauche shares example code to add our additional breakpoint functionality.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>With Gutenberg 16.6, <strong>Nick Diego</strong> updated the <a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/\"><strong>documentation for Block Variations</strong></a> to clarify different properties and to add notes regarding implementation.  He also merged the new page on <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/enqueueing-assets-in-the-editor/\"><strong>enqueuing assets in the Editor</strong></a></p>\n\n\n\n<p></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Ekodesign: Creatif Building block found in WordPress photo directory</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Sep 2023 08:00:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Gutenberg Times: Call for testing of the new Font Library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25529\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://gutenbergtimes.com/call-for-testing-of-the-new-font-library/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4059:\"<p>The Font Library is a new WordPress feature that will come to WordPress 6.4. Your help is needed to test the feature that allows you to manage fonts and their variants for your website. You can find the PR on GitHub <a href=\"https://github.com/WordPress/gutenberg/pull/53884\">Font Library: Frontend [Stage 1] #53884</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Use WordPress playground</h2>\n\n\n\n<p>You can use the WordPress playground tool that is already prepped for your test just follow this link <a href=\"http://bit.ly/test-font-library\">Test Font Library</a>. Unfortunately, you cannot upload other plugins or themes to the playground space yet. </p>\n\n\n\n<h2 class=\"wp-block-heading\">Test with your test site</h2>\n\n\n\n<p>If you need  to use your own test site setup with LocalWP or any other tools because you are curious how the font library works with your set of plugins, themes or custom blocks, you would have to do a bit of a set-up. </p>\n\n\n\n<ol>\n<li><code>define( \'FONT_LIBRARY_ENABLE\', true );</code> in the wp-config to make the fonts library backend work&nbsp;</li>\n\n\n\n<li>Then obtain the PR-specific plugin zip via the “Checks” Scroll to “Build Gutenberg Plugin Zip&#8221;, and on the page scroll all the way down to gutenberg-plugin.zip</li>\n\n\n\n<li>Do not upload as plugin via your site, it will throw an error message. <code>The package could not be installed. No valid plugins were found.</code>) </li>\n\n\n\n<li>Download it to your <code>wp-content/plugins</code> directory of the Test Site and unzip it.&nbsp;</li>\n\n\n\n<li>Go to your <code>wp-admin/plugins</code> page and activate the Gutenberg plugin.&nbsp;</li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\">Via Gutenberg Nightly</h2>\n\n\n\n<p>If you read to this at a later date, and you&#8217;ll find that the PR was already merged, you can always use the <a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Gutenberg Nightly version</a> and start testing on your test site. </p>\n\n\n\n<h2 class=\"wp-block-heading\">How do you find the Font Manager? </h2>\n\n\n\n<p>No matter the tool you use, testing an undocumented feature is like jumping into the deep end of the pool and try to learn how to swim. </p>\n\n\n\n<p>Here are the steps. </p>\n\n\n\n<ul>\n<li>From your Dashboard </li>\n\n\n\n<li>select Appearance > Editor > </li>\n\n\n\n<li>Click into the canvas side of the screen to enable Edit Mode</li>\n\n\n\n<li>Use the Style icon to open it in the right sidebar</li>\n\n\n\n<li>You might already see some fonts listed in the Fonts section </li>\n\n\n\n<li>Click on the Ab icon on the left to the section header. </li>\n\n\n\n<li>It opens the Font Manger modal. </li>\n</ul>\n\n\n\n<p>Below is a short video how you can find the Font Manager. </p>\n\n\n\nVideo: <em>How to find the Font Manager</em>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-what-should-you-test\">What should you test? </h2>\n\n\n\n<ul>\n<li>You can download font from Google or other free font sites</li>\n\n\n\n<li>Upload the fonts via Drag and Drop or selecting the files from your computer</li>\n\n\n\n<li>They should land in the wp-contents/fonts folder.<br /> <img width=\"568\" height=\"326\" class=\"wp-image-25532\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/09/Screenshot-2023-09-10-at-09.11.37.png?resize=568%2C326&ssl=1\" alt=\"New /fonts folder in wp-content directory\" /></li>\n\n\n\n<li>See that they show up in the Typography section of the Global Styles when enabling Font Family. </li>\n\n\n\n<li>Delete fonts you don&#8217;t need. </li>\n</ul>\n\n\n\n<p><em>Note re:  Display in Editor or Frontend</em><br />I have yet to find a way to make the uploaded fonts show up display in the editor or the frontend. I am in the process of finding out why and I&#8217;ll update these instructions when I do. If you already figured out how to do it feel free to share your findings in the comment section. </p>\n\n\n\n<h2 class=\"wp-block-heading\">Where to report issues?</h2>\n\n\n\n<p>Report all finding in a comment on the PR on GitHub <a href=\"https://github.com/WordPress/gutenberg/pull/53884\">Font Library: Frontend [Stage 1] #53884</a>, or comment below. </p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 10 Sep 2023 07:24:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: WP Includes Launches Women in WordPress Mentorship Program\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148596\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/wp-includes-launches-women-in-wordpress-mentorship-program\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3008:\"<img width=\"500\" height=\"333\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/women-working-500x333.jpeg\" alt=\"\" class=\"wp-image-148656\" />photo credit: <a href=\"https://stocksnap.io/photo/people-girls-N444PJYUP9\">Brodie Vissers</a>\n\n\n\n<p><a href=\"https://wpincludes.me/\">WP Includes</a> is a new initiative that launched this week with the goal of improving equal representation of women at global WordPress companies. It was founded by Human Made COO Siobhan McKeown and XWP Director of Engineering Francesco Marano.</p>\n\n\n\n<p>&#8220;I&#8217;ve been in WordPress a long time and I&#8217;ve met a lot of talented women but not enough in leadership roles. It&#8217;s time to change that,&#8221; McKeown said.</p>\n\n\n\n<p>The website states the founders&#8217; mission in launching the initiative:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Disappointed by the lack of representation of women in leadership roles at companies in the WordPress ecosystem we’ve decided to do something about it.</p>\n\n\n\n<p>We want to drastically increase representation of women in leadership roles at WordPress companies. We will do this by mentoring and supporting women to take the next step in their careers.</p>\n</blockquote>\n\n\n\n<p>WP Includes is recruiting women leaders who are C-Level or Directors <br />at a WordPress company to volunteer as mentors and build a supportive network of mentees.</p>\n\n\n\n<p>The mentorship program lasts five months and calls for mentees/mentors goes out twice a year in September and March. Mentors commit to meet with mentees for a 1:1 on a regular basis and support them in achieving their goals. Mentee applicants are required to be working at a business in the WordPress ecosystem and actively developing their careers.</p>\n\n\n\n<p>WP Includes is accepting sponsorships from companies with some rigorous requirements:</p>\n\n\n\n<ul>\n<li>Acknowledge gender disparity and a lack of representation in your organization, wherever it exists.</li>\n\n\n\n<li>Proactively address gender disparity in your leadership and executive roles.</li>\n\n\n\n<li>When senior roles become available, actively seek to place women within those roles.</li>\n\n\n\n<li>Support women within their career in your organization, working to ensure that any gender-related barriers are removed.</li>\n\n\n\n<li>Create opportunities to showcase women leaders in your organisation so that they can act as role models for future leaders.</li>\n</ul>\n\n\n\n<p>Supporting organizations can also contribute by sharing open roles within the network and by providing mentorship to future leaders who may potentially be considered for leadership roles in the sponsoring organizations. This is effectively changing representation from the inside out with cooperating organizations contributing to the cultivation of the leaders they need in order to purse more diverse leadership teams.</p>\n\n\n\n<p>Prospective mentees, mentors, and sponsors can apply on the <a href=\"https://wpincludes.me/\">WP Includes website</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 09 Sep 2023 02:31:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"WPTavern: ACF’s 2023 Annual Survey Results Reinforce Plugin’s Focus on Improving the Block Building Experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148573\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"https://wptavern.com/acfs-2023-annual-survey-results-reinforce-plugins-focus-on-improving-the-block-building-experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3017:\"<p>Advanced Custom Fields (<a href=\"https://wordpress.org/plugins/advanced-custom-fields/\">ACF</a>), one of the plugins WP Engine <a href=\"https://wptavern.com/wp-engine-acquires-5-plugins-from-delicious-brains\">acquired from Delicious Brains</a> in 2022, has published the <a href=\"https://www.advancedcustomfields.com/annual-survey/2023-results/\">results if its first annual survey</a>. Although ACF reports more than 4.5 million active users, including PRO site installs, the survey only gathered feedback from 2,031 respondents. </p>\n\n\n\n<p>These results are more representative of the plugin&#8217;s developer community, as 81% of respondents are developers who maintain between 11-50 websites. 63% use version control for their codebase, and 27% manage dependencies with Composer.</p>\n\n\n\n<p>The survey showed that ACF is still an important tool for its early adopters, as 50% said they have been using it since its early days and 70% of all respondents use the plugin on all the websites they build.</p>\n\n\n\n<p>When asked what type of sites they are building, respondents had the option to choose multiple answers. Sites using Classic WordPress themes are the most popular followed by Hybrid themes, Block themes, and page builders. Surveying those who use the block editor, 56% report that they build blocks using ACF blocks.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1358\" height=\"1030\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-08-at-10.35.34-AM.png\" alt=\"\" class=\"wp-image-148627\" />\n\n\n\n<p>&#8220;It was cool to see the strong representation of hybrid and block themes,&#8221; WP Engine Product Marketing Manager Rob Stinson said. &#8220;It shows us that there is growing adoption of the modern WP editor experience amongst the PHP friendly crowd that is the ACF user base. </p>\n\n\n\n<p>&#8220;We had this scoped for upcoming releases anyway, but it reinforces our focus on improving the block building experience in ACF.&#8221;</p>\n\n\n\n<p>Among those ACF users building sites with page builders, the most popular selections include Elementor, Divi, Beaver Builder, and WPBakery Page Builder.  Naturally, ACF Extended is the most popular extension used with ACF, followed by Gravity Forms, Yoast SEO, and ACF Better Search.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2110\" height=\"1168\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-08-at-12.46.15-PM.png\" alt=\"\" class=\"wp-image-148636\" />\n\n\n\n<p>Respondents demonstrated high confidence in those maintaining the plugin, as 98% of them are comfortable updating ACF to the latest version. They are also confident in continuing to build on top of WordPress, as 91% of survey participants said they are likely to continue with the platform. For a more detailed look at the questions and responses, check out the <a href=\"https://www.advancedcustomfields.com/annual-survey/2023-results/\">2023 annual survey results</a> on the ACF website.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Sep 2023 17:27:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Do The Woo Community: WooBits About WordCampUS, WP Includes, WP for Enterprise, Swag and Avalara Next\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76427\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://dothewoo.io/woobits-newsletter-episode-one/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:440:\"<p>In WooBits this week, recapping WCUS, launch of WP Includes, WordPress for Enterprise, future of swag and Avalara Next virtual event.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woobits-newsletter-episode-one/\">WooBits About WordCampUS, WP Includes, WP for Enterprise, Swag and Avalara Next</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Sep 2023 11:55:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: Gutenberg 16.6 Introduces Block Hooks, Improvements to Toolbars on Nested Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148577\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wptavern.com/gutenberg-16-6-introduces-block-hooks-improvements-to-toolbars-on-nested-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3551:\"<p><a href=\"https://make.wordpress.org/core/2023/09/06/whats-new-in-gutenberg-16-6-06-september/\">Gutenberg 16.6</a> is available with progress on a feature that was formerly called auto-inserting blocks but has now been renamed to block hooks.  </p>\n\n\n\n<p>In a previous release (<a href=\"https://wptavern.com/gutenberg-16-4-introduces-experimental-auto-inserting-blocks\">16.4</a>), Gutenberg introduced auto-inserting blocks as an experimental feature that allows plugin developers to specify a location in which the block will be automatically inserted, such as before or after a template. Users can then reposition the blocks after insertion using the editor tools.</p>\n\n\n\n<p>Gutenberg lead architect Matias Ventura <a href=\"https://github.com/WordPress/gutenberg/issues/53987#issuecomment-1695915874\">proposed</a> <a href=\"https://github.com/WordPress/gutenberg/pull/54147\">renaming</a> the feature to block hooks to help developers understand how they work. </p>\n\n\n\n<p>&#8220;I&#8217;ve seen anecdotal feedback that <code>autoInsert</code> is not the clearest of descriptions,&#8221; Ventura said. &#8220;I&#8217;d like to propose renaming to the more familiar <code>hooks</code> terminology—and &#8216;block hooks&#8217; in more general terms—to help folks understand the mechanics and purpose more rapidly.&#8221;</p>\n\n\n\n<p>This release also <a href=\"https://github.com/WordPress/gutenberg/pull/52969\">adds an inspector panel for block hooks</a>, tentatively named &#8220;Plugins,&#8221; that displays blocks available for auto-insertion. It includes toggles to insert or remove them. The updated version of the feature also includes block icons (not shown below) to help differentiate the toggles. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1443\" height=\"438\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/block-hooks.gif\" alt=\"\" class=\"wp-image-148604\" />image source: <a href=\"https://github.com/WordPress/gutenberg/pull/52969#issuecomment-1669889491\">Gutenberg repository PR #52969</a>\n\n\n\n<p>Gutenberg 16.6 brings improvements to toolbars on nested blocks, where the toolbar now stays attached to the parent block. This change is part of a broader effort to improve nested block experiences. Previously, the toolbar would move around when clicking inside the nested blocks, but this change makes it stay in place for a less chaotic editing experience. The updated toolbar behavior has been rolled out to Navigation, List, and Quote blocks so far.</p>\n\n\n\nvideo credit: Gutenberg GitHub repository <a href=\"https://github.com/WordPress/gutenberg/pull/53699\">PR #53699</a>\n\n\n\n<p>This release includes a new keyboard shortcut for duplicating blocks within the List View: (<code>CMD+Shift+d</code>). It enables users to do more from the keyboard while navigating around the List View, instead of having to jump back into the block settings menu or editor canvas. Users can now click twice on the selected (or focused) block or multiple blocks to quickly duplicate them all in one go.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\nvideo credit: Gutenberg GitHub repository <a href=\"https://github.com/WordPress/gutenberg/pull/53559\">PR #53559</a>\n\n\n\n<p>These highlighted features and more will be landing in the upcoming WordPress 6.4 release. Check out the <a href=\"https://make.wordpress.org/core/2023/09/06/whats-new-in-gutenberg-16-6-06-september/\">Gutenberg 16.6 release post</a> for the full list of new features, enhancements, bug fixes, and improvements to performance and code quality.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 08 Sep 2023 02:59:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"BuddyPress: BuddyPress 12.0.0-beta2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=331167\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://buddypress.org/2023/09/buddypress-12-0-0-beta2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3276:\"<p>Hello BuddyPress contributors!</p>\n\n\n\n<p>If you haven&#8217;t tested our first <a href=\"https://buddypress.org/2023/08/buddypress-12-0-0-beta1/\">12.0.0 beta release</a> (<img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f448.png\" alt=\"?\" class=\"wp-smiley\" /> <strong>please read this post</strong>), here&#8217;s another opportunity to help us make sure it will fit perfectly into your WordPress / BuddyPress specific configuration. Beta testing is very important and more then any other BuddyPress major release, we need you all, whether you&#8217;re a regular or advanced user, a theme designer or a plugin author: <strong>please contribute!</strong></p>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-white-background-color has-text-color has-background wp-element-button\" href=\"https://downloads.wordpress.org/plugin/buddypress.12.0.0-beta2.zip\">Test BuddyPress 12.0.0-beta2</a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s new since beta1?</h2>\n\n\n\n<p>We&#8217;ve been working on improving documentation about 12.0.0 changes and giving advanced users some more customization options about the coming visibility feature.</p>\n\n\n\n<p>We&#8217;ve fixed 8 bugs, the most important one was about the BuddyPress menu items we are making available in the WP Nav Menu management interfaces (Administration screen and customizer). We took this opportunity to <a href=\"https://github.com/buddypress/buddypress/tree/master/docs/user/administration/navigations\">document how BuddyPress is dealing with these interfaces</a>.</p>\n\n\n\n<p>The final release is slated to October 30 and&nbsp;<strong>we need you to get there</strong>: do test this beta release of BuddyPress <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" />.</p>\n\n\n\n<p>You can test <a href=\"https://downloads.wordpress.org/plugin/buddypress.12.0.0-beta2.zip\">BuddyPress 12.0.0-beta2</a> in 4 ways :</p>\n\n\n\n<ul>\n<li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/bp-beta-tester/\">BP Beta Tester</a>&nbsp;plugin.</li>\n\n\n\n<li><a href=\"https://downloads.wordpress.org/plugin/buddypress.12.0.0-beta2.zip\">Download the beta here (zip file)</a>.</li>\n\n\n\n<li>Check out our SVN repository:&nbsp;<code>svn co https://buddypress.svn.wordpress.org/trunk/</code></li>\n\n\n\n<li>Clone our read-only Git repository:&nbsp;<code>git clone git://buddypress.git.wordpress.org/</code></li>\n</ul>\n\n\n\n<p>If you find something weird, please report it on&nbsp;<a rel=\"noreferrer noopener\" href=\"https://buddypress.trac.wordpress.org/newticket\" target=\"_blank\">BuddyPress Trac</a>, post a reply to&nbsp;<a href=\"https://buddypress.org/support/topic/lets-prepare-the-buddypress-12-0-0-next-major-release/\">this support topic</a>&nbsp;or get in touch with us on our&nbsp;<a rel=\"noreferrer noopener\" href=\"https://wordpress.slack.com/messages/buddypress\" target=\"_blank\">WordPress.org Slack channel</a>.</p>\n\n\n\n<p>Thanks in advance for your contributions <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f91d.png\" alt=\"?\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Sep 2023 20:27:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"Do The Woo Community: Woo AgencyChat Live with Mitch Callahan and Ash Shaw\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76387\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://dothewoo.io/woo-agencychat-live-with-mitch-callahan-and-ash-shaw/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:406:\"<p>From tools they use, a bit of AI, remote work and lots of insights into their teams and their companies.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woo-agencychat-live-with-mitch-callahan-and-ash-shaw/\">Woo AgencyChat Live with Mitch Callahan and Ash Shaw</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Sep 2023 08:34:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WPTavern: GoDaddy Retires Media Temple Brand\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148575\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wptavern.com/godaddy-retires-media-temple-brand\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4655:\"<p>Media Temple (MT) is closing its doors after 24 years in the hosting industry, with the brand now retired and customers fully migrated to GoDaddy. In 2013, GoDaddy acquired MT &#8220;to win the hearts and minds of developers,&#8221; as then-CEO Blake Irving told <a href=\"https://venturebeat.com/business/godaddy-ceo-we-bought-media-temple-to-win-the-hearts-and-minds-of-developers/\">VentureBeat</a> at the time. When it was purchased, the highly regarded brand was focusing on advanced technical services that GoDaddy had not yet adapted, and the plan was to have MT operate independently with no changes for employees or customers.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Thanks for allowing us to serve you for 24 years. The time has come to say goodbye. We will miss you. Keep building amazing things!</p>&mdash; Media Temple (@mediatemple) <a href=\"https://twitter.com/mediatemple/status/1699116917900894315?ref_src=twsrc%5Etfw\">September 5, 2023</a></blockquote>\n</div>\n\n\n\n<p>The year following the acquisition, <a href=\"https://wptavern.com/mediatemple-launches-wordpress-managed-hosting-package\">Media Temple launched its managed WordPress hosting product</a>, joining the ranks of Flywheel, Page.ly, WordPress.com, WP Engine, and a handful of other companies that were working to elevate the hosting experience for WordPress users.</p>\n\n\n\n<p>In December 2022, MT <a href=\"https://origin-blog.mediatemple.net/news/a-new-chapter-for-media-temple/\">announced</a> it would be retiring the Media Temple brand and transitioning accounts to GoDaddy, while subtly acknowledging the sentimental place MT holds in many of its customers&#8217; hearts:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Since joining GoDaddy, we worked hand-in-hand with them to incorporate the best of Media Temple into offerings, including improving GoDaddy’s customer experience and leveraging Media Temple’s unique expertise on what it truly means to run a world-class hosting organization. If you closely examine GoDaddy’s hosting offerings, you will find Media Temple’s fingerprints all around. From specialized teams who deal with complex hosting issues to programs like GoDaddy Pro specifically targeting creatives, Media Temple made its mark on GoDaddy.</p>\n</blockquote>\n\n\n\n<p>Fans bid the brand farewell on Twitter, as its retirement marks the end of a chapter in web hosting history.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Basically the entire design community was sponsored by Media Temple back in the day.<br /><br />I can’t imagine a more omnipresent brand at the time. <a href=\"https://t.co/mmhdxEIHVy\">https://t.co/mmhdxEIHVy</a></p>&mdash; Josh Pigford (@Shpigford) <a href=\"https://twitter.com/Shpigford/status/1699464913595290066?ref_src=twsrc%5Etfw\">September 6, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">When I got started circa 2003, it felt like every respected web designer was hosted by Media Temple.<br /><br />They made being hosted by them feel cooler (really) than anywhere else. Geniuses.<br /><br />I was a (mt) customer from 2007–2020 until <a href=\"https://twitter.com/laravelforge?ref_src=twsrc%5Etfw\">@laravelforge</a> made deploying magnitudes easier. <a href=\"https://t.co/HyhBxz5PZs\">https://t.co/HyhBxz5PZs</a></p>&mdash; Brendan Falkowski (@Falkowski) <a href=\"https://twitter.com/Falkowski/status/1699543478169112971?ref_src=twsrc%5Etfw\">September 6, 2023</a></blockquote>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Woah. Somehow Media Temple always seemed so cool, the first “aspirational” software in a way, where you’d move when your blog was successful.<br /><br />End of an era. <a href=\"https://t.co/tJobBqEPQf\">https://t.co/tJobBqEPQf</a></p>&mdash; Matthew Guay (@maguay) <a href=\"https://twitter.com/maguay/status/1699446005568270700?ref_src=twsrc%5Etfw\">September 6, 2023</a></blockquote>\n</div>\n\n\n\n<p>In February 2023, Media Temple began migrating accounts to GoDaddy, with no action required from customers. Many of the products and services were already fulfilled through GoDaddy, decreasing the number needing to be migrated. </p>\n\n\n\n<p>Now that the process is complete, the brand will discontinue operations and move current resources into supporting customers inside GoDaddy. The company assured former MT customers that they will retain their current products and pricing for equivalent products with access to more tools.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Sep 2023 03:36:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Post Status: Community Summit Recaps, Multilingual Documentation, Performant Translations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=154280\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://poststatus.com/community-summit-recaps-multilingual-documentation-performant-translations/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21140:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-september-4-2023\">This Week at WordPress.org (September 4, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Discover the latest from the WordPress community. From the future of WordPress &amp; Gutenberg&#8217;s next steps to intriguing discussions at the Community Summit. Plus, get a sneak peek into WordPress 6.4&#8217;s development cycle. Stay updated, stay involved! </p></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n<div class=\"gb-container gb-container-5e804289\">\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><h2><a href=\"https://wordpress.org/news\">News</a></h2></h2>\n\n</div>\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/09/episode-61-community-summit-all-at-washington-d-c/\">WP Briefing: Episode 61: Community, Summit, all at Washington D.C.</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/wordpress-6-3-1-maintenance-release/\">WordPress 6.3.1 Maintenance Release</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">The Future of WordPress &amp; What’s Next for Gutenberg</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/wp20-a-heartfelt-thanks/\">WP20 – A Heartfelt Thanks</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community-summit-notes\"><a href=\"https://make.wordpress.org/summit\">Community Summit Notes</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/summit/2023/09/06/community-summit-discussion-notes-iterating-on-the-team-rep-role/\">Community Summit Discussion Notes: Iterating on the Team Rep role</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/09/04/community-summit-discussion-notes-open-source-participation-in-global-legislation/\">Community Summit Discussion Notes: Open Source participation in global legislation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/09/03/community-summit-discussion-notes-communication-and-collaboration-finding-your-way-around-wordpress/\">Community Summit Discussion Notes: Communication and Collaboration – Finding Your Way Around WordPress</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/09/01/understanding-contributor-leadership-roles-in-the-wordpress-open-source-project/\">Understanding contributor leadership roles in the WordPress open source project</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/31/part-i-ii-communicating/\">Part I &amp; II: Communicating…</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/31/invisible-and-under-appreciated-bolstering-behind-the-scenes-contributions/\">Invisible and under-appreciated: bolstering “behind the scenes” contributions</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/30/community-summit-discussion-notes-revitalizing-contributor-teams-leadership-pipeline/\">Community summit discussion notes: Revitalizing contributor teams’ leadership pipeline</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/30/community-summit-discussion-notes-php-version-support/\">Community Summit Discussion Notes: PHP version support</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/28/community-summit-discussion-notes-can-wordpress-become-the-household-name-it-deserves-to-be/\">Community Summit Discussion Notes: Can WordPress become the household name it deserves to be?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/27/community-summit-discussion-notes-refreshing-the-contributor-pipeline/\">Community Summit Discussion Notes: Refreshing the contributor pipeline</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-2 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-5 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/30/accessibility-team-meeting-agenda-september-1-2023/\">Accessibility Team Meeting Agenda: September 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/28/wcus-2023-contributor-day-summary/\">WCUS 2023 Contributor Day Summary</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/09/01/wordcamp-mentors-september-check-in/\">WordCamp Mentors’ September check-in!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/30/the-nextgen-event-project-your-ideas-your-wordpress-community/\">The NextGen Event Project: Your Ideas, Your WordPress Community!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/23/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-august-23-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on August 23, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/23/call-for-ideas-new-features-for-our-nexgen-wp-events-central-page/\">Call for ideas: new features for our NexGen WP events central page</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/21/meetup-organizer-newsletter-august-2023/\">Meetup Organizer Newsletter: August 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/06/a-week-in-core-september-4-2023/\">Two Weeks in Core – September 4, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/05/call-for-testing-performant-translations/\">Call for Testing: Performant Translations</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/31/proposal-an-update-to-the-field-guide/\">Proposal: An update to the Field Guide</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/adding-and-using-custom-settings-in-theme-json/\">Adding and using custom settings in theme.json</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/08/exploring-the-future-of-web-development-with-webassembly-and-php/\">Exploring the future of web development with WebAssembly and PHP</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/08/an-introduction-to-block-variations/\">An introduction to block variations</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/08/the-anatomy-of-a-letterform/\">The anatomy of a letterform</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/06/default-theme-chat-summary-august-30th-2023-2/\">Default Theme chat summary: September 6, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/05/dev-chat-agenda-september-6-2023/\">Dev Chat agenda, September 6, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/04/editor-chat-agenda-06-september-2023/\">Editor Chat Agenda: 06 September 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/08/28/design-share-aug-14-aug-25/\">Design Share: Aug 14-Aug 25</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/18/design-specific-triage/\">Bringing Back the Weekly Design Triage</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/08/10/admin-design-kickoff/\">Admin Design Kickoff</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/09/01/agenda-for-docs-team-bi-weekly-meeting-05-sep-2023/\">Agenda for Docs Team Biweekly Meeting (05-Sep-2023)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/09/04/documentation-team-update-september-4-2023/\">Documentation Team Update – September 4, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/09/06/hosting-team-meeting-agenda-2023-09-06/\">Hosting Team meeting agenda 2023-09-06</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/09/03/xpost-community-summit-discussion-notes-php-version-support/\">X-post: Community Summit Discussion Notes: PHP version support</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/08/24/wordcamp-us-2023-contributor-day/\">WordCamp US 2023 Contributor Day</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/23/introducing-the-wordpress-org-github-invite-tool/\">Introducing the WordPress.org GitHub Invite tool</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/09/04/last-week-openverse-2023-08-28-2023-09-04/\">A week in Openverse: 2023-08-28 – 2023-09-04</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/09/05/performance-chat-summary-05-september-2023/\">Performance Chat Summary: 5 September 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/09/04/plugin-review-team-4-september-2023/\">Plugin Review Team: 4 September 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/09/06/agenda-weekly-polyglots-chat-september-06-2023-0700-utc/\">Agenda: Weekly Polyglots Chat- September 06, 2023 (07:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/09/04/improving-translation-suggestions-from-other-languages/\">Improving Translation Suggestions from Other Languages</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/09/06/documentation-translation-localization/\">Proposal: Documentation translation/localization</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/08/proposal-for-updated-support-guidelines/\">Proposal for updated support guidelines</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/09/06/how-the-wordpress-sustainability-team-was-born-during-wordcamp-europe-2023/\">How the WordPress Sustainability Team was born during WordCamp Europe 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/sustainability/2023/09/05/sustainability-chat-agenda-september-8-2023/\">Sustainability Chat Agenda, September 8, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/08/31/test-chat-summary-29-august-2023/\">Test Chat Summary: 29 August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/08/29/fse-program-lets-start-from-the-beginning-summary/\">FSE Program Let’s Start From The Beginning Summary</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/08/15/test-team-reps-call-for-nominations-3/\">Test Team Reps: Call for Nominations</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/09/04/test-team-update-4-september-2023/\">Test Team Update: 4 September 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/09/05/themes-team-update-september-5-2023/\">Themes team update September 5, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/09/02/whats-new-on-learn-wordpress-in-august-2023/\">What’s new on Learn WordPress in August 2023</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/learn-wordpress-newsletter-september-2023/\">Learn WordPress Newsletter – September 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/09/05/wordcamp-us-2023-contributor-day-recap/\">WordCamp US 2023 Contributor Day Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/09/05/lets-share-our-notes-from-the-community-summit/\">Let’s share our notes from the Community Summit</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/24/information-sources-for-wordpress-6-4/\">Information Sources for WordPress 6.4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/24/looking-for-feedback-learning-pathway-outlines/\">Looking for feedback: Learning pathway outlines</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/intro-to-the-site-editor-and-template-editor/\">Intro to the Site Editor</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/gu-how-to-start-using-wordpress-playground/\">વર્ડપ્રેસ પ્લેગ્રાઉન્ડનો ઉપયોગ કેવી રીતે શરૂ કરવો</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/common-apis-dashboard-widgets/\">Common APIs – Dashboard Widgets</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-create-a-video-tutorial-for-learn-wordpress-org/\">How to create a video tutorial for learn.wordpress.org</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-3\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=speaker-workshop-for-indian-women-in-the-wordpress-community-part-2\">Speaker Workshop for Indian Women in the WordPress Community Part 2</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=speaker-workshop-for-indian-women-in-the-wordpress-community-part-1\">Speaker Workshop for Indian Women in the WordPress Community Part 1</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-metadata-2\">Common WordPress APIs: Metadata</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-13\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=apac-using-the-navigation-block\">APAC: Using the navigation block</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=using-the-navigation-block-3\">Using the navigation block</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-metadata\">Common WordPress APIs: Metadata</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=41489\">WP dev livestream: Sendig block theme</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/wordpress-community-team-supporter-basics/\">WordPress Community Team Supporter Basics</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/08/28/jquery-3-7-1-released-reliable-table-row-dimensions/\">jQuery 3.7.1 Released: Reliable Table Row Dimensions</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-08-31-1\">PHP 8.3.0 RC 1 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-08-31-2\">PHP 8.2.10 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-08-31-3\">PHP 8.1.23 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.1\">PHPMailer 6.8.1</a></li>\n\n\n\n<li><a href=\"https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-35.html\">Changes in MySQL 8.0.35 (Not yet released, General Availability)</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases\">Composer 2.6.2</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong>   <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>.  </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 19:31:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: #89 – Scott Kingsley Clark on Why the Time Is Right for the Fields API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=148568\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/podcast/89-scott-kingsley-clark-on-why-the-time-is-right-for-the-fields-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47790:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, why the time might be right for the Fields API.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you, and hopefully get you all your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox. And use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Scott Kingsley, Clark.</p>\n\n\n\n<p>Scott is a WordPress developer who has been working with WordPress since 2007. He&#8217;s well-known for his work on the Pods Framework, a popular content and custom fields plugin.</p>\n\n\n\n<p>Scott&#8217;s goal is to find ways to enhance the WordPress experience, particularly in terms of working with different types of data. He&#8217;s currently involved in the WordPress Fields API project, which aims to provide a better solution for developers looking to wrangle their data. And that is the focus of the podcast today. As you&#8217;ll hear, Scott is determined to contribute to the continual growth and improvement of WordPress, and to make the Fields API a reality.</p>\n\n\n\n<p>Scott came from a background using Drupal, which is an alternative CMS. When he first ventured into WordPress, he found certain features were lacking. Things which were baked into Drupal Core were not available in WordPress, a notable example being custom fields.</p>\n\n\n\n<p>We know that WordPress has a myriad of plugins, which can take on the burden of creating custom fields, but Scott has concerns about the interoperability of these plugins, and he wants to create a more solid structure within WordPress itself. Wouldn&#8217;t it be nice if there were ways for developers to create custom field plugins so that you weren&#8217;t locked into one or the other. Scott imagines a future in which you could move from ACF, Metabox Toolset and more. A future built on top of the Fields API.</p>\n\n\n\n<p>Throughout the conversation, scott talks about his passion for incorporating the block editor, React and other technologies into WordPress. He shares insights on controlling block settings, making them extensible through PHP.</p>\n\n\n\n<p>You might know Scott from his work on the popular Pods Framework plugin. This plugin allows users to create custom content types and fields in WordPress, and certainly speaks to his credentials in trying to push the Fields API project forward.</p>\n\n\n\n<p>We talk about what the Fields API might become. The aim is to simplify the process of working with custom fields and content types in WordPress. With the Fields API, Scott hopes to unify the different methods and APIs for managing custom fields, making it easier for developers and non-developers alike to add their fields to different screens within WordPress.</p>\n\n\n\n<p>It&#8217;s a complicated undertaking and we get into some of the areas of WordPress, which might benefit from his work. Scott sheds light on the challenges faced during the development of the Fields API, the need for shared storage standards among plugins, and the potential for better integration with the WordPress Admin UI.</p>\n\n\n\n<p>Towards the end of the podcast we talk about the future of the Fields API project, and how gaining support from people in the WordPress community will be crucial to its success.</p>\n\n\n\n<p>If you&#8217;re interested in how WordPress can be used as a fully featured CMS, this podcast is for you.</p>\n\n\n\n<p>If you want to find out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Scott Kingsley Clark.</p>\n\n\n\n<p>I am joined on the podcast today by Scott Kingsley Clark. Hello Scott.</p>\n\n\n\n<p>[00:04:53] <strong>Scott Kingsley Clark:</strong> Hey Nathan, how&#8217;s it going?</p>\n\n\n\n<p>[00:04:55] <strong>Nathan Wrigley:</strong> Yeah really good. Thank you for joining us on the podcast today. We&#8217;re going to get into the weeds a little bit with WordPress code and all sorts of things. We haven&#8217;t had one of these episodes for a little while so this will be nice and refreshing.</p>\n\n\n\n<p>Scott, given that we&#8217;re going to be talking about something technical I suppose it would be a good thing right at the beginning to learn about your technical expertise. The various different projects that you&#8217;ve touched in the WordPress space during the time that you&#8217;ve been in that. So just yeah a little moment for you to offer up your bio really. So over to you.</p>\n\n\n\n<p>[00:05:24] <strong>Scott Kingsley Clark:</strong> Well sure. I started working with WordPress in about 2007 or 8. I used it briefly once before with a one click install from cPanel before that, but I didn&#8217;t really like it at the time. And I was doing many other things.</p>\n\n\n\n<p>But ever since that point I have been really involved with trying to make WordPress the best that it can be. And that has evolved through plugin development. One of the plugins I&#8217;m more known for is the Pods Framework. And that is a content type, a custom field plugin for WordPress. But I&#8217;ve also tried to find ways to make it easier for other developers to build things without needing a plugin. Because a plugin like Pods existed before custom post types had a real API.</p>\n\n\n\n<p>But now that it has a real API you don&#8217;t really need a plugin like Pods to just make a custom post type. And the goal for me is, I&#8217;d love to see a better way to work with those types of objects inside of WordPress that have very different APIs, or in some cases no API at all. You just have to output your own markup and hook into some hooks. And it&#8217;s not really great.</p>\n\n\n\n<p>Especially in this day where we have everything exposed to the Rest APIs. And you want to build really cool blocks, but you can&#8217;t leverage some data from different structures that don&#8217;t exist. So that&#8217;s where I&#8217;d love to find ways for WordPress to level up.</p>\n\n\n\n<p>In this particular project of mine, is the WordPress Fields API. There is a group of us who have kind of rebooted it, but it existed in 2000 and, I want to say 14, 15, 16, 2017, all through those years. And we had made some progress, made a few different proposals and it just got stuck up in the process of getting the block editor and Rest API.</p>\n\n\n\n<p>And there was just so many more bigger features that were getting the priority, and it kind of burned me out. And I didn&#8217;t find anyone else to carry the torch so it just went away. And just the start of this year we started up again.</p>\n\n\n\n<p>[00:07:30] <strong>Nathan Wrigley:</strong> What was the reason that it went away? You mentioned there that there were a whole variety of different things going on at the same time. So was it that the community&#8217;s focus just seemed to be more interested on other things? And so despite the fact that you were putting in the time, and you obviously just described that it burnt you out a little bit. There just wasn&#8217;t enough interest because attention was being put elsewhere.</p>\n\n\n\n<p>[00:07:53] <strong>Scott Kingsley Clark:</strong> Right. Well Fields API owes so much to WebDevStudios and 10up who offered a lot of my time on the clock. They donated my time towards developing the Fields API and pushing it forward. And at 10up we were really, really close. We got the closest we had been at that point because at 10up we had a really awesome contributor for WordPress. A core committer, Helen Hou-Sandi.</p>\n\n\n\n<p>And that got us really close, but I think it just was that I was practically speaking for Fields API and saying, we should do this, we should do that, and it just wasn&#8217;t hitting. It wasn&#8217;t hitting right for them. Or the people who were involved in making decisions on what was going to make it, or what was going to get the attention or whatever, just didn&#8217;t feel it yet.</p>\n\n\n\n<p>And I can understand that. I mean there&#8217;s so much that everyone is trying to do for each release. And I kind of assumed that if I built as much as possible and showed it as a really thoroughly working prototype with tests and everything else. And I just handed it to them and said hey here it is. Can you help me make this part of WordPress Core? Do you have any feedback? And when I did that I guess the biggest problem was I hadn&#8217;t really involved all those same voices at that point prior to actually doing the development of it.</p>\n\n\n\n<p>So I had some input from a few different core contributors and committers and such. But as soon as I pushed out that final proposal in 2017 we got so many detractors and people saying, oh we should have done this differently or, why is it like this? And I would have done it this way. And it kind of did not get the consensus that I was needing for it to gain further traction. So we&#8217;ve kind of approached it differently in this reboot.</p>\n\n\n\n<p>[00:09:42] <strong>Nathan Wrigley:</strong> Okay, right. So you did a lot of the work, you put it out there but the feedback that came back didn&#8217;t exactly encourage you, let&#8217;s put it that way. There were people who just would rather it had been done in their way. I&#8217;m guessing that that&#8217;s because there are loads of different ways that this type of problem has been tackled I guess on a more or less on a per plugin basis. There&#8217;s probably hundreds of plugins out there that do something similar. They do it their way. And so they presumably think that their way is the way that it should be done.</p>\n\n\n\n<p>[00:10:15] <strong>Scott Kingsley Clark:</strong> Right. I mean there&#8217;s so many plugins like ACF and Pods and Toolset, so many more at comparewp.org slash cck. Which is like a really cool comparison list of all these different types of plugins. But there&#8217;s so many that each one has their own baked in API for managing fields in WordPress.</p>\n\n\n\n<p>And it&#8217;s just bonkers that everyone has to build all these APIs, and in the end they&#8217;re almost it&#8217;s forcing the need of having to build their own APIs because they won&#8217;t accept anything else other than the one that they built. And I think that it&#8217;s tricky with developers and egos and everything else. We all have to kind of find a way to, you know, what is the minimum bare essentials API that we could build for this and find a consensus on that.</p>\n\n\n\n<p>[00:11:01] <strong>Nathan Wrigley:</strong> So I guess this time around the community involvement is going to be there. You&#8217;re going to do this much more in the open. So that as you are going along presumably ideas are chipped in, rather than it just being one great big release at the end where everybody gets to either agree or disagree.</p>\n\n\n\n<p>[00:11:18] <strong>Scott Kingsley Clark:</strong> Right yeah. We tried to do that before but I think the challenge was we moved so quickly. I built so much code and I had made a specification ahead of time. But really the time wasn&#8217;t spent in the research specification side to get a consensus at that point, with not just the people who were involved but everyone else. Making sure everyone else had a moment to do that.</p>\n\n\n\n<p>I guess when people just look at a specification like oh, I&#8217;ll just look at it later on when he has something for me to look at. And so it just gets delayed. And I&#8217;m hoping that this time I can find ways to intuitively make it so people will actively and proactively be part of that process and give feedback</p>\n\n\n\n<p>[00:12:01] <strong>Nathan Wrigley:</strong> So given that you&#8217;ve restarted it, what reinvigorated it for you? Where did your curiosity for something that has been dormant for quite a number of years now. What on earth was it that brought you back to seeing this as a worthwhile use of your time?</p>\n\n\n\n<p>[00:12:16] <strong>Scott Kingsley Clark:</strong> Since 2017 I&#8217;ve had kind of dark years in my contributing to WordPress Core, and just feeling like, well I can&#8217;t get anything big done so maybe I shouldn&#8217;t spend my time on it. And just the amount of time I&#8217;d spent on it had taken away from my full time work and my side projects.</p>\n\n\n\n<p>I&#8217;m just like, well if I&#8217;m going to do this I really need it to be something I believe in. And up until the start of the year I just didn&#8217;t really feel like it was going to be possible. And then Joe Dolson, from the accessibility team was talking about how their team was looking at trying to revitalize the settings screens.</p>\n\n\n\n<p>And one of the biggest challenges were their setting screens are hard coded in a lot of ways. And there&#8217;s not really an easy way to just like, here let&#8217;s try out this different interface. Let&#8217;s try this interface, this markup. We&#8217;ll change this markup here. And it&#8217;s very difficult to produce different markup inside of WordPress Core right now for a lot of screens really.</p>\n\n\n\n<p>And more importantly for them, it&#8217;s not even using the Settings API the same way as most people are building things with the Settings API. And they hooked up with me because Courtney Robertson, a really awesome Dev Rel person, has just connected me with Joe at the end of last year I believe. And we just started talking about it, like hey this would be really cool if we had this Fields API stuff that you were thinking about before.</p>\n\n\n\n<p>And I was like well I don&#8217;t know. And then as they discussed it with really the focus on accessibility I was like, you know what accessibility is such a big priority to me that I think it kind of overrides my initial thoughts about well I don&#8217;t know if I can get this into Core. Because I thoroughly believe in spending more time on accessibility for lots of different plugins. Especially for WordPress Core and the block editor. And if I can help push that forward I feel like I&#8217;ve done something better with my time.</p>\n\n\n\n<p>And at that point I was like yeah I&#8217;m in. We&#8217;ll focus on the Settings API, just on that. And we&#8217;re not going to like build all the different screens and API prototype that we had done before. Until we get the Settings API, let&#8217;s focus all of our energy on doing that for the Settings API itself.</p>\n\n\n\n<p>[00:14:26] <strong>Nathan Wrigley:</strong> So that all kicked off again at the beginning of this year, 2023. And I&#8217;m staring at a page on the Make WordPress Core blog, which you wrote right at the beginning of the year, january the 9th. You&#8217;ve posted a video there of you, and I think the four other people on the call. So right at the very start of this year, five people involved at the very least.</p>\n\n\n\n<p>How has the project been growing? Has it caught the attention in the way that you&#8217;d hoped? Have there been people coming along to assist? One of the enterprises of this podcast episode is obviously to swell the number of people, but it would be quite nice to know how it&#8217;s going just prior to that.</p>\n\n\n\n<p>[00:15:04] <strong>Scott Kingsley Clark:</strong> So as with a lot of these kinds of initiatives it all depends on the time you put in, as someone who has the vision and leads it. And my time on the Fields API had been kind of reduced, just right after this. The economy started having some challenges in the tech space, and job security was a concern in a lot of areas for a lot of people, especially me.</p>\n\n\n\n<p>And so I didn&#8217;t have as much free time to focus on that. I was focused on my work, keeping my head down and making sure I was doing all my things. And I just didn&#8217;t have enough headspace for it. But I knew that if I could really spend a great deal of time this summer on the Fields API, getting it prepared, getting it to the next phase, so that we have something solid. By the time it is time for Community Summit contributor day for WordCamp US we have a solid chance.</p>\n\n\n\n<p>And then something came out of nowhere. On the Make WordPress dot org core, blog I saw a post come through. And I&#8217;ve been watching posts there all the time and sometimes I&#8217;ll provide feedback. But this one was unique. This one was talking about revamping the Admin UI. And now I&#8217;m getting all sorts of excited and I&#8217;m thinking to myself, oh this is my time.</p>\n\n\n\n<p>Like, if I can get the Admin UI perspective on the Fields API, I think this could even help us further, pushing this forward. Because if you want to approach redoing the Admin UI you have to expose these kinds of fields and forms and screens in a way that is more dynamic than it is right now. And that is a sweet spot for the Fields API.</p>\n\n\n\n<p>So I posted on that blog post. I asked Matias, hey can we have Fields API? Please, please, please be part of this conversation. I would love to talk to you more about it. And so we&#8217;re probably going to talk about it at WordCamp US, some time during that week. And my hope is we&#8217;ll get this really pushed further. Because it takes buy in from the vocal people in WordPress. And I think I&#8217;m beginning to see more buy in. And that is really a positive thing for me.</p>\n\n\n\n<p>[00:17:12] <strong>Nathan Wrigley:</strong> Sounds like a really nice bit of serendipity there. Couple of things happened, and the chance of the Admin UI being overhauled kind of sits perfectly doesn&#8217;t it. That really would be the moment.</p>\n\n\n\n<p>It is a dramatic change that&#8217;s being proposed. And so I guess if you&#8217;re going to go all in on changing the Admin UI, well now would be the time to get all of the fields work done as well.</p>\n\n\n\n<p>It just occurs to me that given the audience that listen to this podcast, there&#8217;s a fair smattering of developers no doubt. But also there&#8217;s people who are just into WordPress. You know, it&#8217;s a hobby. They perhaps do it as a side gig or something.</p>\n\n\n\n<p>So maybe we should rewind and do some explanations about what on earth an API for fields would even do. Why is it even needed? I&#8217;m suspecting that many people log in to their WordPress website, certainly since the advent of Gutenberg. And more or less everything that they want to do, publish posts, schedule posts, that&#8217;s possibly the extent of it all. It functions.</p>\n\n\n\n<p>So I&#8217;m imagining there&#8217;s a proportion of people listening to this going, well, what even would this be needed for? Describe a scenario where this would be useful. So, let&#8217;s cover that out. What is the Fields API? How would it change what WordPress does?</p>\n\n\n\n<p>[00:18:25] <strong>Scott Kingsley Clark:</strong> Sure. So let me preface my answer with, there&#8217;s a reason why there&#8217;s so many plugins out there doing content types and custom fields. There&#8217;s a reason why Advanced Custom Fields has millions of active installs. And tons of people have paid for the pro premium versions of these kinds of plugins.</p>\n\n\n\n<p>Now I&#8217;ll get into the real answer. This is an incredibly complicated dance. Whenever you want to go add a custom field to a post, or let&#8217;s say you&#8217;re building a site, a hobby site. I use the book analogy a lot, but let&#8217;s talk about music, because I love music too.</p>\n\n\n\n<p>So you&#8217;re setting up a site for your music and maybe you&#8217;re an artist, a solo artist or a band. And you&#8217;re trying to set up a list of albums. And so you&#8217;re like well, how do I add albums? You could add that in the block editor. No problem, no issues there. But then what if you wanted to make it more data oriented.</p>\n\n\n\n<p>So if you wanted to do that you&#8217;d have to go register a custom post type for album, for instance. Maybe a custom post type for tracks, if you want to relate them to albums in some way. And maybe a custom post type for other things. Maybe custom taxonomies for other items that you want. But the challenge there is not really in the content type. It&#8217;s in the custom fields you want to add to that.</p>\n\n\n\n<p>Inside of WordPress, I counted it up recently, there&#8217;s somewhere between 16 to 17 different APIs and hooks that are totally different from each other, to add custom fields or settings to different areas on all the different screens, and different objects inside of WordPress. That is a lot. So adding a custom field means you have to go add an action inside of PHP.</p>\n\n\n\n<p>First of all you have to know PHP and kind of know where to put it. Second of all you have to then go add action to add a meta box. Then you have to add your code to render all of your fields markup. So you have to add your HTML in there and have it do that. Then you have to add an action to handle the saving.</p>\n\n\n\n<p>And then at that point you&#8217;re probably going to be looking at doing more things for taxonomies possibly. So you have to work with another action there. You have to add things there and it doesn&#8217;t look great. So then you have to add more markup. And it&#8217;s a lot for someone who just wants to build.</p>\n\n\n\n<p>So you just mentioned that there&#8217;s a number of developers listening to this right now. But there&#8217;s a lot of people who aren&#8217;t really considering themselves developers. They&#8217;re just people building sites and they don&#8217;t really have time to dig into the code. Or they don&#8217;t want to tell their client they can do this if they can&#8217;t build it custom, they would have to pay someone else to do that. And they want to avoid that cost. So they&#8217;re going to use one of these off the shelf plugins, like Advanced Custom Fields.</p>\n\n\n\n<p>Why would you spend five hours building your albums and tracks and things like that in PHP? The trial and error and figuring out the markup and, why is this not working? And then coming back to it later on and spending another few hours trying to debug something that happens. And then displaying it all on the front end. Why spend all that time when you can just install a plugin and just click a few buttons? And boom, you have another post type and then you have your fields already displayed. And by the way they look really nice. Why would you spend that time?</p>\n\n\n\n<p>So this is more of a feature, or more of a project geared towards developers so that it makes them spend less time on their side of things. And it unifies all 16, 17 of these methods and APIs to work with all these different screens.</p>\n\n\n\n<p>But what the end result would be is anyone using WordPress could then be using a plugin, or potentially use code snippets very easily without having to have a whole lot of knowledge. And be able to add a field to different screens without a whole lot of code, or whole lot of PHP experience. And these types of plugins like ACF, and Pods, and Toolset and various others, they could then leverage the Fields API if they&#8217;re supporting that WordPress version that includes it. They could leverage this Fields API in a way that reduces the code that they actually have to have inside their own plugins.</p>\n\n\n\n<p>And at the same time that makes it so WordPress itself, the REST APIs, everything that talks with the Fields API, then knows about the structures you&#8217;re registering.</p>\n\n\n\n<p>It&#8217;s a hand in hand, win-win scenario for end users who benefit from the stability, and the flexibility, and extensibility of those APIs in place. And developers who want to be able to utilize those things.</p>\n\n\n\n<p>[00:22:54] <strong>Nathan Wrigley:</strong> Have you any experience with other CMSs? We could probably list off half a dozen or more other CMSs. But certainly some that I have used in the past, a lot of these kind of features are baked into the core product. So the ability to add custom fields to, well it may not be called a custom post type over on that particular platform but you get the idea. It is already built in, if you like.</p>\n\n\n\n<p>You mentioned that you want to have this pushed to Core. Do you see that other CMSs are potentially stealing a march on WordPress? WordPress has traditionally been very good at giving 80% of the people what they want. So there is some argument as to whether or not some things should be added or some shouldn&#8217;t. But do you feel its been lacking this? And really a lot of other rival CMSs have been doing this for years.</p>\n\n\n\n<p>[00:23:42] <strong>Scott Kingsley Clark:</strong> That&#8217;s a very good point. The plugin Pods was one of the first ones that did custom content types and custom fields for WordPress in a way that mimicked, and this is in 2008, the end of 2008. It mimicked Drupal at the time.</p>\n\n\n\n<p>Drupal has a major feature called, what they called CCK, which was Content Construction Kit. I think that was what it was.</p>\n\n\n\n<p>And so what value that API had for Drupal was that it would let you do the kinds of things you&#8217;re seeing be possible with plugins like Metabox or whatever else, you can use code, and ACF to register your groups and fields, and you can use code to register custom post types.</p>\n\n\n\n<p>So you don&#8217;t have to use the UIs. You don&#8217;t have to provide a bunch of JSON. You can just register those things through PHP. And Drupal has had this for many, many years. It&#8217;s coming up on almost 20 years now that it&#8217;s had a feature like CCK. And that is not really that Drupal is ahead of WordPress, it&#8217;s that WordPress is severely behind. Because it hasn&#8217;t really prioritized these kinds of unifying APIs for its screens. I mean obviously WordPress hasn&#8217;t.</p>\n\n\n\n<p>If you look at it, it really hasn&#8217;t changed a whole lot until block editor. The interfaces and screens really kind of have been what they are. The structure of where things are has been mostly the same outside the block editor.</p>\n\n\n\n<p>Multisite was a big thing, but the screens themselves they really haven&#8217;t changed a whole lot. And I think that is just because we&#8217;ve been focused as a project on building features and not looking back at what we&#8217;ve done, and finding a better way to represent that. A project like the Admin UI revamp, or even accessibility revamp, could give us that time to kind of be introspective. What are we doing with these screens, and how do we make these things better?</p>\n\n\n\n<p>And backward compatibility doesn&#8217;t have to be a hindrance in the Fields API because it can be backward compatible too. It&#8217;s just if you want to register the new way you can do that and that is the officially the way that we recommend you do it. It&#8217;s just, it works. I really hope that more people see things like Drupal, and there&#8217;s so many other plugins, or so many other CMSs out there that have their own kind of CCK situations.</p>\n\n\n\n<p>Because it&#8217;s just, you&#8217;re building a CMS? Well you&#8217;re not going to want to do that the way the WordPress did it way back when. No one&#8217;s going to want to do that on purpose. And I think that they all already have their own forms and Fields API processing abilities, because that&#8217;s the bare minimum. As a developer, when you&#8217;re building something like this you build that. You don&#8217;t build all the markup and everything hard coded anymore.</p>\n\n\n\n<p>[00:26:24] <strong>Nathan Wrigley:</strong> Yeah I was a big fan of Drupal, and I used Drupal exclusively more or less for many years. My first interaction with WordPress was an endeavor to move away from Drupal for a variety of different reasons. And I do remember opening up WordPress and almost being incredulous that I couldn&#8217;t achieve some of the things that I was simply able to achieve with a vanilla install of Drupal.</p>\n\n\n\n<p>So custom fields was just trivially easy. It was there, it was baked in. And so I had this expectation, well everybody&#8217;s using WordPress it must have, you know, a similar feature set. And so, just flabbergasted that it didn&#8217;t exist.</p>\n\n\n\n<p>Of course very quickly found out exactly what you just said. That commercial and also free, there&#8217;s plenty of free options as well, Pods being one. That you had to go and find a solution for that. So rather than it being baked into core you&#8217;d go out and you&#8217;d purchase ACF or you would download Pods or whatever it may be.</p>\n\n\n\n<p>But this sort of feeling that well that&#8217;s interesting because I wonder how they&#8217;re doing that and if they&#8217;re doing it differently than the other one, so if ACF is doing it differently to how Pods is doing it, you could make that spaghetti go in any direction. How am I going to be stuck in the future? You know things that I create with Pods, is that interoperable? Could I start using ACF at a future date on the same website?</p>\n\n\n\n<p>So there&#8217;s all of that thrown into it as well. And I guess the endeavor here is to create that basic structure so that everybody can approach it and everybody can start creating these things without the reliance necessarily on a third party plugin.</p>\n\n\n\n<p>[00:28:03] <strong>Scott Kingsley Clark:</strong> Right. Like if you&#8217;re using a plugin like that and the Fields API comes out, there could be a migration thing, or exporting plugin created that exports from Pods or ACF or whatever into the Fields API structure. Much like ACF and some of these other plugins have the ability to kind of export. Maybe the biggest one is Custom Post Type UI. Where it&#8217;s just simple. Add custom post types, you add custom taxonomies and you can export that to code.</p>\n\n\n\n<p>And that code works without the plugin. So it just tells it, here is what you tell WordPress to do what you want to do here. That kind of ability to export into just a Fields API code would take your code, your plugin usage of ACF or Pods or whatever, and you could easily switch out into just pure WordPress.</p>\n\n\n\n<p>But also because if it has that ability to use the Fields API at that point you have more interoperability. So you can go between these different plugins more easily because there&#8217;s a similar structure we&#8217;re all using. And when you&#8217;re registering through Fields API you can potentially set like a source, like this is coming from ACF, or whatever you want.</p>\n\n\n\n<p>And then a Pods plugin could say oh hey I recognize you had these ACF fields, do you want to bring them over? The Fields API opens up the door because everyone&#8217;s talking the same talk. And we can all talk about things in the same conversation instead of like I need to know the ACF APIs to work with getting the fields out, and I need to know this and then that. And there&#8217;s that side.</p>\n\n\n\n<p>But there&#8217;s also the storage side. So we&#8217;re talking about the way that ACF stores their content. For repeatable fields that can be quite tricky. Flexible content, anything that has to do with data that&#8217;s not just a simple single value gets a little bit tricky depending on how you choose to store it in ACF.</p>\n\n\n\n<p>So those sorts of things are more based off of the plugin developers preference. So ACF was developed in a specific kind of point of view, for how they should store the storage. Pods is the same way, we have a specific point of view where it should be stored a certain way. Every plugin will have their own points of view. But if we can settle on the structure of the content fields, the custom fields for each of these objects, and how they&#8217;re going to be specified to WordPress, that&#8217;s really half the battle.</p>\n\n\n\n<p>Then we can start talking about, okay now that we have this common language let&#8217;s work on bringing everyone to the same storage, so anyone can switch between these different plugins and they won&#8217;t have to deal with any extra work. We could all agree on a shared set of storage, kind of specification standards really.</p>\n\n\n\n<p>[00:30:35] <strong>Nathan Wrigley:</strong> The breadth of this project feels like it could be truly enormous because there are fields in all sorts of unexpected places in WordPress. I mean you may not be thinking about them all the time but you know we&#8217;ve got post types, and terms, and comments, and settings, and users, and navigation, and the media library and all sorts of different places.</p>\n\n\n\n<p>How are you breaking it down? Is there an order in which you&#8217;re going to knock those dominoes over? Are you going for, I don&#8217;t know, probably the low hanging fruit of custom post types first, or is the intention to try and get everything done all at once? You did mention accessibility. Perhaps that&#8217;s come first because of Joe Dolson&#8217;s interactions with you.</p>\n\n\n\n<p>[00:31:17] <strong>Scott Kingsley Clark:</strong> Yeah. So accessibility is going to be the main driving point for us right now. So we&#8217;re focused on the Settings API. If we can get this right and potentially the goal is to get it to the point where we can actually merge it just for the Settings API. Just for the Settings API.</p>\n\n\n\n<p>We have an inside person now, inside of WordPress itself. So now we can start expanding it, and say okay now here&#8217;s the proposal to add this to the post types, and to the terms and everywhere else to be powered by the Fields API. And once you have those things powered by the Fields API, the full Admin UI revamp is becoming much more approachable for people who want to switch out the markup there.</p>\n\n\n\n<p>They don&#8217;t have to modify core as much to make it happen. They don&#8217;t have to duplicate all the code and deal with merge conflicts. It&#8217;s just so much more easier when you&#8217;re working with data structures that are defined as data structures, and not purely as markup and save handlers like they are in many areas of WordPress.</p>\n\n\n\n<p>[00:32:13] <strong>Nathan Wrigley:</strong> You&#8217;ve been doing this kind of work for years with Pods. So you know you&#8217;re incredibly familiar with this. Is there anything during your time working with Pods where you thought, I wish WordPress had this?</p>\n\n\n\n<p>So I&#8217;m just wondering if you might try to smuggle into this some unique new feature, not something which we&#8217;re already familiar with. You know post types and comments and users. Really that question might go nowhere but I just wondered if there was something innovative that you&#8217;ve got. Really I&#8217;d love to try this.</p>\n\n\n\n<p>[00:32:40] <strong>Scott Kingsley Clark:</strong> So I do have something but it&#8217;s going to be interesting to see if we can make it happen. So the way that this has been focused on has been replacing existing screens that are kind of hard coded and all that. But we haven&#8217;t really talked about, what about the block editor? What about React and all those things?</p>\n\n\n\n<p>And the cool part about that is that if you look at the screen, if you go to the block editor right now, you&#8217;re looking at editing a post and you insert a block, like let&#8217;s talk about the paragraph block or even a group block. On the right hand side, if you have it open, the inspector control sidebar there. That allows you to control what the block settings are, on margins and adding extra classes if you want to add them to the block.</p>\n\n\n\n<p>And many different blocks have many different settings. And then also you can click over and if you&#8217;re looking at the post type, or page post type you&#8217;ll see the word post or page up there and there&#8217;s a little kind of a tab, and you click that and then you are looking at the object controls.</p>\n\n\n\n<p>So this controls what is going on with the page or post like attributes for the parent, or maybe the date, or the many different things like slug and all that. So both of these areas are areas I would love, not really to sneak in, but I want to get buy in from people. I want to find a way to build these screens, these sets of fields and have them extensible through PHP.</p>\n\n\n\n<p>If we can do this in a way with the Fields API where you could register new sections and controls inside of React, it&#8217;s possible. We&#8217;re doing this right now. Pods is doing this, ACF, many other block builders are doing this with their blocks, their own blocks APIs. The way that we&#8217;re doing it right now is too much. It&#8217;s going down the same road of we&#8217;re locking ourselves in.</p>\n\n\n\n<p>I want these sections and these controls to be extensible. I want someone to be able to override stuff. I want someone to be able to add new things to them. I want to add something ahead of it or after it. I don&#8217;t want to have to know any JavaScript to be able to do the bare minimum for basic controls.</p>\n\n\n\n<p>You can still, with the Fields API even, you could still at that point do all the JavaScript or React stuff you want to build up your own custom controls, and the ways that you want them to display, and special handling for how to work with the blocks and all that. But really the bare minimum ought to be the way that we lower the bar towards developers, new people, new developers.</p>\n\n\n\n<p>But especially at this point, PHP is not getting the love it needs as an API source for WordPress, especially with a block editor. We need to expand that. I think there&#8217;s so much potential.</p>\n\n\n\n<p>[00:35:27] <strong>Nathan Wrigley:</strong> Given everything that you&#8217;ve just said, and we&#8217;ve now got a real nice full round picture of what it is that you&#8217;re trying to achieve, are there any significant roadblocks? I mean obviously hours and coding, the amount of time that it&#8217;s going to take you to do all these things, and the amount of people who jump on board the project, that&#8217;s a given. Are there any technical obstacles that are in the way that you foresee being problematic?</p>\n\n\n\n<p>[00:35:52] <strong>Scott Kingsley Clark:</strong> So before, when we built all this stuff in the earlier versions, and I just read, we actually started working on the kind of Fields API idea in 2013. That&#8217;s even earlier than I remember. That was back in Freenode, Freenode IRC stuff.</p>\n\n\n\n<p>I think one of the challenges was when we built all the different screens we had to modify WordPress Core files and override them. And as new versions of WordPress would be released we&#8217;d have to merge those changes into ours. It&#8217;s a headache to keep it up, and keep it updated for every release. And for even maintenance releases to make sure that you&#8217;re not breaking something that was changed or fixed inside of WordPress release, and having it so that my prototype should always work with latest WordPress.</p>\n\n\n\n<p>Well that&#8217;s difficult because latest WordPress is always changing. I think that&#8217;s the challenge is trying to focus not on, like we did before, we had posts, we had terms, we had settings, we had users, we had comments, we had media, we had the customizer. All those different areas were covered.</p>\n\n\n\n<p>We already had those things covered inside of the Fields API code we had before. You could use the Fields API actively to add things to those screens. But that was a lot. That was a lot to deal with. So if we focus on settings, that&#8217;s why I&#8217;m hoping this reduced focus on setting screens will reduce the amount of pain we have to deal with. Because when we&#8217;re merging things we only have to worry about just those settings screens that we&#8217;re overriding for WordPress Core. That&#8217;s it. And we don&#8217;t have to worry about all the different screens and all the different files that we&#8217;ve been overriding.</p>\n\n\n\n<p>[00:37:16] <strong>Nathan Wrigley:</strong> Yeah thank you for that. I mean obviously you would be very warmly welcoming anybody who has listened to this and is intrigued by what you&#8217;ve said and thinks, okay I&#8217;ve got some technical expertise that I could apply to this project. If that&#8217;s the case, where are you hanging out most with this? I&#8217;m guessing the Slack channel is probably a good place to start. But maybe there&#8217;s some other places too.</p>\n\n\n\n<p>[00:37:39] <strong>Scott Kingsley Clark:</strong> I really deeply would love to have more contributors. Anyone who can think about things in different points of view for how a Fields API should be built. Things like someone who&#8217;s involved with other plugins that do this type of thing. It&#8217;s a big plus if you&#8217;ve built a Fields API yourself for one of these plugins.</p>\n\n\n\n<p>It&#8217;s also a big thing to think about you know just someone who&#8217;s not been building those things but maybe someone coming from outside of WordPress, or someone with heavier PHP structure experience. How do we structure the Fields API? And how is that going to look?</p>\n\n\n\n<p>There&#8217;s also plenty of room for people who can help write tutorials, or help us write. I think one of my big deficiencies is having time to write up all the great text that we&#8217;re going to need for make.wordpress.org core posts about how do we describe what we&#8217;re building here, and get people involved and excited?</p>\n\n\n\n<p>What is the proposal going to look like? And how do we lay this out nicely? And those types of things would be also very helpful to have. And you can find all of our efforts inside of Slack right now. So if you go into the WordPress Slack you&#8217;ll find us in the core dash fields channel.</p>\n\n\n\n<p>We also have a GitHub that has been totally revamped from the old ones. We now have two different archive repos from the past versions that we had. And now we have this third repo that we&#8217;re using that is refreshed and ready to go. It already has some more research already in it and we&#8217;re going to start working from that repo now.</p>\n\n\n\n<p>[00:39:03] <strong>Nathan Wrigley:</strong> That&#8217;s perfect. I will make sure to link to those in the show notes. Everything that you&#8217;ve mentioned I&#8217;ll make sure that it gets a link. But it sounds like not just technical people. There&#8217;s also room for people who have skills in, I don&#8217;t know, documentation or something that you&#8217;ve described. So the door is wide open. This feels like really important work. It would be lovely to get this over the wire. To get some more buy in, and more thoughts from different community members.</p>\n\n\n\n<p>So yeah we&#8217;ll round it off there. Scott Kingsley Clark. Thank you so much for chatting to me today. I wish you all the best in getting this into Core in the, well, let&#8217;s say near future.</p>\n\n\n\n<p>[00:39:35] <strong>Scott Kingsley Clark:</strong> I really appreciate you including me and this project in your efforts here to get the word out. I can&#8217;t say how much I&#8217;m excited. I&#8217;m just extremely excited to get this finally pushed up and hopefully emerged into Core. And I am working my behind off this entire month, just to make sure that we can try to get that traction and get it across that finish line.</p>\n\n\n\n<p>[00:39:58] <strong>Nathan Wrigley:</strong> Well very much appreciated, because everything that you do and achieve will certainly make our WordPress lives a lot better. So thank you, Scott. I really appreciate it.</p>\n\n\n\n<p>[00:40:07] <strong>Scott Kingsley Clark:</strong> No problem.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.scottkclark.com/\">Scott Kingsley Clark</a>.</p>\n\n\n\n<p>Scott is a WordPress developer who has been working with WordPress since 2007. He is well-known for his work on the <a href=\"https://pods.io/\">Pods Framework</a>, a popular content and custom fields plugin. Scott&#8217;s goal is to find ways to enhance the WordPress experience, particularly in terms of working with different types of data. He is currently involved in the WordPress Fields API project, which aims to provide a better solution for developers looking to wrangle their data, and that is the focus of the podcast today. As you’ll hear Scott is determined to contribute to the continual growth and improvement of WordPress and try to make the Fields API a reality.</p>\n\n\n\n<p>Scott came from a background using Drupal, which is an alternative CMS. When he first ventured into WordPress, he found certain features were lacking. Things which were baked into Drupal Core were not available in WordPress, a notable example being custom fields.</p>\n\n\n\n<p>We know that WordPress has a myriad of plugins which can take on the burden of creating custom fields, but Scott has concerns about the interoperability of these plugins, and he wants to create a more solid structure within WordPress itself. Wouldn’t it be nice if there were ways for developers to create custom field plugins so that you weren’t locked into one or the other? Scott imagines a future in which you could move from ACF, Metabox, Toolset and more; a future built on top of the Fields API.</p>\n\n\n\n<p>Throughout the conversation, Scott talks about his passion for incorporating the block editor, React, and other technologies into WordPress. He shares insights on controlling block settings, making them extensible through PHP.</p>\n\n\n\n<p>You might know Scott from his work on the popular Pods Framework plugin. This plugin allows users to create custom content types and fields in WordPress, and certainly speaks to his credentials in trying to push the Fields API project forward.</p>\n\n\n\n<p>We talk about what the Fields API might become. The aim is to simplify the process of working with custom fields and content types in WordPress. With the Fields API, Scott hopes to unify the different methods and APIs for managing custom fields, making it easier for developers and non-developers alike to add fields to different screens within WordPress. It’s a complicated undertaking and we get into some of the areas of WordPress which might benefit from this work.</p>\n\n\n\n<p>Scott sheds light on the challenges faced during the development of Fields API, the need for shared storage standards among plugins, and the potential for better integration with the WordPress Admin UI.&nbsp;</p>\n\n\n\n<p>Towards the end of the podcast we talk about the future of the Fields API project and how gaining support from people in the WordPress community will be crucial to its success.</p>\n\n\n\n<p>If you’re interested in how WordPress can be used as a fully featured CMS, this podcast is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://pods.io/\">Pods Framework</a></p>\n\n\n\n<p><a href=\"https://developer.wordpress.org/rest-api/\">REST API documentation</a></p>\n\n\n\n<p><a href=\"https://docs.google.com/spreadsheets/d/1mSqienVYxLopTFGLPK0lGCJst2knKzXDtLQRgwjeBN8/edit#gid=3\">Compare WP &#8211; Plugin Comparison &#8211; Content Types / Custom Fields</a></p>\n\n\n\n<p><a href=\"https://communitysummit.wordcamp.org/2023/\">WordPress Community Summit 2023</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/advanced-custom-fields/\">ACF</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/meta-box/\">Meta Box</a></p>\n\n\n\n<p><a href=\"https://toolset.com/\">Toolset</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/custom-post-type-ui/\">Custom Post Type UI</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 15:10:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Akismet: 25 Ways to Increase Your Online Form Conversion Rates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=236608\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://akismet.com/blog/form-conversion-rate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23794:\"<p>Running a successful website is no small feat. It requires a great deal of hard work, dedication, and knowledge from a team of experts all working symbiotically toward a common goal. There are so many different aspects to consider — from designing the perfect user experience to maintaining an effective web hosting infrastructure.</p>\n\n\n\n<p>But one of the most critical aspects that can make or break success is the conversion rate of your forms. Your form conversion rate is the percentage of visitors who successfully complete a form on your website. The higher this rate, the more successful your site will be at generating new leads, sales, and other desired outcomes.</p>\n\n\n\n<p>Whether it&#8217;s a contact form, a <a href=\"https://akismet.com/blog/how-to-enable-or-disable-user-registration-in-wordpress/\">sign-up form</a>, or a checkout form, the ease and convenience of these for users directly impact business.&nbsp;</p>\n\n\n\n<p>That&#8217;s why, today, we&#8217;ll explore 25 ways to increase your online form conversion rates and, in turn, boost the effectiveness of your website.</p>\n\n\n\n<span id=\"more-236608\"></span>\n\n\n\n<h2 class=\"wp-block-heading\">1. Keep forms short and simple</h2>\n\n\n\n<p>The first rule of thumb, when it comes to increasing your form conversion rate, is to keep your forms short and simple. The less time and effort it takes for a user to complete a form, the more likely they are to do so.</p>\n\n\n\n<p>According to the <a href=\"https://contentsquare.com/insights/digital-experience-benchmark/\">Contentsquare 2023 Digital Experience Benchmark report</a>, the average internet user spends less than 5.6 minutes on a website they&#8217;re actively engaged with. Think reading a blog post or trying to make a purchase.&nbsp;</p>\n\n\n\n<p>At first glance, that seems like a decent amount of time, but when you consider session duration has <a href=\"https://contentsquare.com/blog/average-time-spent-on-websites-is-dropping/\">decreased by 7.5%</a> since 2021, it&#8217;s clear that user behavior indicates less patience.</p>\n\n\n\n<p>And that&#8217;s not a lot of time to capture their attention and get them to fill out a form. By keeping your forms short and straightforward, you&#8217;re making it as easy as possible for users to engage with your site and, ultimately, convert.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image4.png\" alt=\"example of email list signup for WooCommerce\" class=\"wp-image-236610\" />\n\n\n\n<p>Consider only asking for the most essential information. If you&#8217;re collecting leads from potential event sponsors, you really only need the representative&#8217;s name and email. Your sales team may also want you to ask for a phone number, company name, and budget information, but each of these questions will reduce the number of top-of-funnel submissions you receive. So, you’ll have to consider this balance and optimize your forms accordingly.</p>\n\n\n\n<h2 class=\"wp-block-heading\">2. Place your forms above the fold</h2>\n\n\n\n<p>&#8220;Above the fold&#8221; is a term borrowed from the newspaper industry that refers to the upper half of the front page. The term &#8220;above the fold&#8221; in web design is the part of a webpage that’s visible without the need to scroll. Placing your lead generation forms above the fold on their landing page makes them immediately visible to visitors, increasing the likelihood that they&#8217;ll be filled out.</p>\n\n\n\n<p>A <a href=\"https://www.nngroup.com/articles/scrolling-and-attention/\" target=\"_blank\" rel=\"noreferrer noopener\">study by Nielsen Norman Group</a> found that user attention drops dramatically below the fold. By placing your form above, you&#8217;re ensuring that it&#8217;s one of the first things a user sees when they land on your page.</p>\n\n\n\n<p>The goal is to make it as easy as possible for people to convert. By strategically placing your web forms, you&#8217;re removing one more barrier between the user and a conversion.</p>\n\n\n\n<h2 class=\"wp-block-heading\">3. Limit the use of CAPTCHAs</h2>\n\n\n\n<p>CAPTCHAs, those little tests that ask you to identify traffic lights or crosswalks in a series of images, are a common method of <a href=\"https://akismet.com/blog/how-to-stop-contact-form-spam-on-wordpress/\">preventing form spam</a>. However, they can also be a significant barrier to web form completion.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image10.png\" alt=\"example of a CAPTCHA with red spheres\" class=\"wp-image-236611\" />\n\n\n\n<p><a href=\"https://akismet.com/blog/wordpress-captcha/\">CAPTCHAs</a> can be frustrating and time-consuming for users, especially if they&#8217;re difficult to solve. And they can also pose accessibility issues for those with impairments. While CAPTCHAs can be effective at preventing bots from submitting forms, they can also deter legitimate users.</p>\n\n\n\n<p>Instead of relying on CAPTCHAs, consider other methods of spam prevention that are less intrusive and more user-friendly…</p>\n\n\n\n<h2 class=\"wp-block-heading\">4. Use non-intrusive spam protection</h2>\n\n\n\n<p>Non-intrusive spam protection methods can be a great alternative to CAPTCHAs. These methods work behind the scenes to prevent spam without disrupting the user&#8217;s experience.</p>\n\n\n\n<p>For example, the <a href=\"https://akismet.com/features/\">Akismet anti-spam plugin</a> for WordPress sites offers powerful spam protection without the need for CAPTCHAs. It automatically checks and filters out <a href=\"https://akismet.com/blog/how-to-stop-contact-form-spam-on-wordpress/\">spam submissions</a>, allowing you to focus on managing your site.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image1.png\" alt=\"Akismet homepage\" class=\"wp-image-236612\" />\n\n\n\n<p>Through prioritizing non-intrusive spam protection methods, you can improve the user experience and accessibility of your forms, leading to higher conversion rates.</p>\n\n\n\n<h2 class=\"wp-block-heading\">5. Group related fields together</h2>\n\n\n\n<p>Organization is key when it comes to designing user-friendly forms. Grouping related fields together can make your forms easier to navigate and understand, leading to higher completion rates.</p>\n\n\n\n<p>You might wish to group contact information fields (like name, email, and phone number) together, separate from billing information fields (like credit card number, expiration date, and CVV).</p>\n\n\n\n<p>This not only makes your form more visually organized, but it also helps users understand what kind of information is expected in each section.</p>\n\n\n\n<h2 class=\"wp-block-heading\">6. Use clear and descriptive field labels</h2>\n\n\n\n<p>Clear and descriptive field labels are crucial for ensuring that people know exactly what information they need to provide. Ambiguous or confusing labels can lead to errors, frustration, and ultimately, form abandonment.</p>\n\n\n\n<p>For instance, if you&#8217;re asking for a user&#8217;s phone number, specify whether it&#8217;s a home, work, or mobile number.</p>\n\n\n\n<p>If you&#8217;re asking for a date, indicate the format you want it in (e.g., MM/DD/YYYY).</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image3.png\" alt=\"name, email, and date fields grouped together\" class=\"wp-image-236613\" />\n\n\n\n<p>The goal is to make it as easy as possible for users to complete your form. Clear, descriptive labels go a long way towards achieving this and improving your form conversions.</p>\n\n\n\n<h2 class=\"wp-block-heading\">7. Optimize for mobile devices</h2>\n\n\n\n<p>With more than <a href=\"https://www.statista.com/statistics/277125/share-of-website-traffic-coming-from-mobile-devices/\" target=\"_blank\" rel=\"noreferrer noopener\">half of all web traffic</a> now coming from mobile devices, it&#8217;s more important than ever to ensure your forms are mobile-friendly.</p>\n\n\n\n<p>This means performing a series of form optimization tasks, including:</p>\n\n\n\n<ul>\n<li>Making sure your web forms are fully responsive and easy to navigate on smaller screens</li>\n\n\n\n<li>Ensuring fields are large enough to tap</li>\n\n\n\n<li>Making it easy for users to switch between fields</li>\n\n\n\n<li>Avoiding the use of elements that don&#8217;t work well on mobile, like hover tooltips.</li>\n</ul>\n\n\n\n<p>Mobile users are on the go, so they are even less patient than desktop users. By optimizing your forms for mobile, you can make it easier for users to convert and boost your conversion rate.</p>\n\n\n\n<h2 class=\"wp-block-heading\">8. Use progress indicators</h2>\n\n\n\n<p>If your form is long or divided into multiple sections, using progress indicators can be a great way to keep site visitors engaged. Progress indicators show people how far they&#8217;ve come and how much further they have to go to complete the form.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image6.png\" alt=\"form with a progress bar\" class=\"wp-image-236614\" />\n\n\n\n<p>This can be particularly useful for complex forms, like multistep checkout processes or lengthy surveys. When you show users their progress, you&#8217;re giving them a sense of accomplishment and encouraging them to go all the way.</p>\n\n\n\n<h2 class=\"wp-block-heading\">9. Use autofill and auto-suggest features</h2>\n\n\n\n<p>Autofill and auto-suggest features can significantly speed up the form completion process and improve the user experience. These features automatically populate fields with relevant information, saving users time and effort.</p>\n\n\n\n<p>For example, an autofill feature might populate a user&#8217;s address based on their IP location, while an auto-suggest feature might suggest relevant options as someone begins typing into a field.</p>\n\n\n\n<p>When you reduce the amount of typing and decision-making required, these features can make your forms quicker and easier to complete, leading to higher conversion rates.</p>\n\n\n\n<h2 class=\"wp-block-heading\">10. Use inline validation</h2>\n\n\n\n<p>Inline validation involves checking each field for errors as the user fills out the form, rather than waiting until they hit the &#8220;submit&#8221; button. If a user makes a mistake, they&#8217;re immediately alerted and can correct the error on the spot.</p>\n\n\n\n<p>This can prevent frustration and confusion that can occur when a user completes a form, only to be told they&#8217;ve made multiple errors. It also helps users learn as they go, improving the overall experience.</p>\n\n\n\n<h2 class=\"wp-block-heading\">11. Use conditional logic</h2>\n\n\n\n<p>Conditional logic, also known as &#8220;if-this-then-that&#8221; logic, can make your forms more interactive and user-friendly. It involves showing or hiding fields based on the user&#8217;s previous responses.</p>\n\n\n\n<p>So, if someone indicates that they&#8217;re from the United States, you might show a field asking for their state. If they indicate they&#8217;re from another country, that field would be hidden.</p>\n\n\n\n<p>By tailoring your form to each user&#8217;s responses, you can make the form-filling process more relevant and less overwhelming, leading to higher conversion rates.</p>\n\n\n\n<h2 class=\"wp-block-heading\">12. Limit the use of mandatory fields</h2>\n\n\n\n<p>While it&#8217;s important to gather as much relevant information as possible, too many form fields can deter people from completing your form. Try to make fewer form fields mandatory and only require the most essential information.</p>\n\n\n\n<p>If a field isn&#8217;t absolutely necessary, consider making it optional. Users who are in a hurry or who value their privacy will appreciate the option to skip non-essential fields.</p>\n\n\n\n<h2 class=\"wp-block-heading\">13. Use smart defaults</h2>\n\n\n\n<p>Smart defaults involve pre-populating form fields with the most likely response. This can save users time and effort, making your form quicker and easier to complete.</p>\n\n\n\n<p>For example, if most of your site visitors are from the United States, you might set &#8220;United States&#8221; as the default option in the &#8220;Country&#8221; field. Users from other countries can still select their country from the dropdown menu, but U.S. users won&#8217;t have to.</p>\n\n\n\n<h2 class=\"wp-block-heading\">14. Break long forms into multiple pages</h2>\n\n\n\n<p>Long forms can be overwhelming and may deter users from starting. By breaking these forms into smaller, more manageable steps, you can make the form-filling process less daunting and more user-friendly.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image2.png\" alt=\"Page 2 of a multi-step form\" class=\"wp-image-236615\" />\n\n\n\n<p>Multipage forms also give users a sense of progress, which can motivate them to complete the form. Just remember to include a progress indicator, as we already mentioned, so users know how far they&#8217;ve come and how much further they have to go.</p>\n\n\n\n<h2 class=\"wp-block-heading\">15. Ensure accessibility for all users</h2>\n\n\n\n<p>Accessibility should be a priority when designing your forms. This means ensuring that all users, including those with impairments or disabilities, can easily navigate and complete your web forms.</p>\n\n\n\n<p>This might involve using larger text sizes, providing alternative text for images, and ensuring your forms are compatible with screen readers. The <a href=\"https://www.w3.org/WAI/standards-guidelines/wcag/\">Web Content Accessibility Guidelines (WCAG)</a> offers all the details about making web content more accessible.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image5.png\" alt=\"W3C homepage\" class=\"wp-image-236616\" />\n\n\n\n<p>By making your forms accessible, you&#8217;re not only complying with legal requirements and ethical best practices, but you&#8217;re also expanding your user base and increasing your potential conversion rates.</p>\n\n\n\n<h2 class=\"wp-block-heading\">16. Use contrasting colors and clear typography</h2>\n\n\n\n<p>The design of your forms can have a significant impact on their usability and, consequently, your conversion rates. Using contrasting colors can make your forms more visually appealing and easier to read.</p>\n\n\n\n<p>Similarly, clear typography can improve readability and reduce the likelihood of errors. Choose fonts that are easy to read and large enough to be seen on all devices.</p>\n\n\n\n<h2 class=\"wp-block-heading\">17. Eliminate unnecessary distractions</h2>\n\n\n\n<p>When a user is filling out a form, you want their focus to be on the form and nothing else. This means eliminating any unnecessary distractions, like pop-ups, excessive text, or irrelevant images.</p>\n\n\n\n<p>The simpler and more focused your form page is, the more likely people are to complete the form. Remember, the goal is to make it as easy as possible for users to convert.</p>\n\n\n\n<h2 class=\"wp-block-heading\">18. Display trust signals and social proof</h2>\n\n\n\n<p>Trust signals and social proof can significantly increase your form conversion rates by building trust with your potential customers and site visitors. This might involve displaying security badges, testimonials, or the number of satisfied customers you have.</p>\n\n\n\n<p>For example, if you&#8217;re asking for sensitive information like credit card details, displaying a security badge can reassure users that their information will be safe.</p>\n\n\n\n<p>Similarly, testimonials can show people that others have had positive experiences with your company.</p>\n\n\n\n<p>On the Akismet homepage, there’s a prominent display of how many pieces of spam have been blocked, how many websites have been protected, and the spam detection accuracy.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image9.png\" alt=\"amount of spam blocked by Akismet\" class=\"wp-image-236617\" />\n\n\n\n<h2 class=\"wp-block-heading\">19. Clearly state your privacy policy</h2>\n\n\n\n<p>In an era where data privacy is a major concern, you need to clearly state your privacy policy on your forms. Let visitors know exactly how their information will be used and stored. This transparency can build trust and increase the likelihood of people completing your form.</p>\n\n\n\n<p>Consider adding a link to your full privacy policy for those who want more detailed information. Also, reassure users that their information will not be shared with third parties without their consent.</p>\n\n\n\n<h2 class=\"wp-block-heading\">20. Provide instructions and help text</h2>\n\n\n\n<p>While your form should be intuitive and easy to understand, providing additional instructions and help text can guide users through the process and prevent errors. This can be particularly useful for complex fields that require specific formats or information.</p>\n\n\n\n<p>Help text should be concise and clearly visible, ideally placed directly under the field it refers to. Providing this extra guidance can improve the user experience and increase form completion rates.</p>\n\n\n\n<h2 class=\"wp-block-heading\">21. Offer live chat assistance</h2>\n\n\n\n<p>Offering live chat assistance can provide immediate help to users who are having trouble with your form. This real-time support can resolve issues quickly, preventing them from abandoning the form out of frustration.</p>\n\n\n\n<p>Live chat can also provide valuable insights into common issues or obstacles, allowing you to continually improve your form based on feedback.</p>\n\n\n\n<h2 class=\"wp-block-heading\">22. Use action-oriented submit buttons</h2>\n\n\n\n<p>The text on your submit button can influence whether users complete your form. Just as you work to refine your call to action copy in other areas, you should pay careful attention to the language used on form buttons. Instead of using a generic term like &#8220;Submit,&#8221; consider a more action-oriented and specific term that tells users what they&#8217;re accomplishing by clicking the button.</p>\n\n\n\n<p>For instance, if your form is for a newsletter sign-up, your button call to action might say &#8220;Join our community.&#8221;&nbsp;</p>\n\n\n\n<p>Or, if it&#8217;s a purchase form, it might say &#8220;Complete my purchase.&#8221; This small tweak can make your form more engaging and motivate users to take action.</p>\n\n\n\n<p>Another example is on the Akismet checkout form, which confirms how much a customer will pay:</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image7.png\" alt=\"Akismet checkout form\" class=\"wp-image-236618\" />\n\n\n\n<h2 class=\"wp-block-heading\">23. Make your buttons stand out</h2>\n\n\n\n<p>The design of your submit button can significantly increase conversions on your forms. Your button should stand out from the rest of the form, making it clear where someone needs to click to submit the form.</p>\n\n\n\n<p>Consider using a contrasting color for your button and placing it in a prominent location. The size of the button also matters — it should be large enough to be easily tapped on a mobile device, but not so large that it overwhelms the rest of the form.</p>\n\n\n\n<h2 class=\"wp-block-heading\">24. Use friendly and descriptive error messages</h2>\n\n\n\n<p>Error messages matter a great deal in form design as well. They guide users in correcting mistakes, but if they&#8217;re not handled well, they can frustrate users and lead to form abandonment.</p>\n\n\n\n<p>Ensure that your error messages are friendly, descriptive, and helpful. Instead of simply saying &#8220;Invalid input,&#8221; explain what the error is and how to fix it.</p>\n\n\n\n<p>For example, &#8220;The email address you entered is not in the correct format. Please enter a valid email address.&#8221;</p>\n\n\n\n<h2 class=\"wp-block-heading\">25. A/B test form elements</h2>\n\n\n\n<p>Finally, one of the most effective ways to increase your form conversion rates is to continually test and optimize your forms. A/B testing involves creating two versions of your form, each with a different element, and seeing which one performs better.</p>\n\n\n\n<p>You can A/B test almost any aspect of your form, from the color of your submission button to the wording of your field labels. There are several WordPress plugins that can help you A/B test your forms easily, like <a href=\"https://wordpress.org/plugins/nelio-ab-testing/\" target=\"_blank\" rel=\"noreferrer noopener\">Nelio A/B Testing</a>.</p>\n\n\n\n<img src=\"https://akismet455732288.files.wordpress.com/2023/08/image8.png\" alt=\"Nelio Testing homepage\" class=\"wp-image-236619\" />\n\n\n\n<h2 class=\"wp-block-heading\">Increase your online form conversion rate with careful planning</h2>\n\n\n\n<p>Increasing the conversion rates of your sign up form, lead generation forms or other web forms is a multifaceted process that involves thoughtful design, user-friendly features, and continuous optimization. By implementing the strategies discussed in this article, you can create a web form that not only provides a seamless user experience but also effectively drives conversions.</p>\n\n\n\n<p>One key aspect of this process is ensuring your forms are protected from spam in a non-intrusive way. That&#8217;s where Akismet has a role to play. With its robust, <a href=\"https://akismet.com/pricing/\">conversion-friendly spam protection</a>, Akismet allows you to maintain the integrity of your forms and protect the user experience — without the need for CAPTCHA.</p>\n\n\n\n<p>So, as you work on optimizing all the forms on your site, consider Akismet as your partner in creating a more secure, user-friendly, and conversion-optimized form experience.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions</h2>\n\n\n\n<p>Let&#8217;s now turn our attention to some frequently asked questions about form design and conversion rate optimization.</p>\n\n\n\n<h3 class=\"wp-block-heading\">1. How do I decide which form fields are essential and which can be removed?</h3>\n\n\n\n<p>Deciding which form fields are essential depends on the purpose of your web form. While it’s best to limit required fields, If it&#8217;s a contact form conversion rate you’re working on, for example, you&#8217;ll likely still need fields for the user&#8217;s name, email address, and message .</p>\n\n\n\n<p>Any additional fields should be carefully considered. Ask yourself if the information is necessary to achieve the purpose of the form. If not, it might be best to remove the field to keep the form short and simple.</p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Why should I avoid using CAPTCHA on my contact forms?</h3>\n\n\n\n<p>While CAPTCHA can be effective at preventing spam, it can also deter legitimate users. CAPTCHAs can be frustrating and time-consuming, especially if they&#8217;re difficult to solve. They can also pose accessibility issues for users with impairments. Instead, consider using non-intrusive spam protection methods, like Akismet, that provide a better user experience.</p>\n\n\n\n<h3 class=\"wp-block-heading\">3. What is Akismet, and how can it help with form conversion rates?</h3>\n\n\n\n<p><a href=\"https://akismet.com/\">Akismet</a> is an anti-spam plugin for WordPress sites. It automatically checks and filters out spam comments, allowing you to focus on managing your site. By preventing spam without the need for CAPTCHAs or other intrusive methods, Akismet can improve the user experience and increase form conversion rates.</p>\n\n\n\n<h3 class=\"wp-block-heading\">4. What types of companies generally use Akismet?</h3>\n\n\n\n<p>Akismet is used by a wide range of companies, from small businesses to <a href=\"https://akismet.com/enterprise/\">large enterprises</a>. It&#8217;s particularly popular among companies that rely heavily on their online presence, such as ecommerce businesses and content creators.&nbsp;</p>\n\n\n\n<p>With over 100 million sites using Akismet, it&#8217;s clear that this tool is trusted by many. Notable enterprise brands such as Microsoft, <a href=\"https://akismet.com/blog/convertkit-customerstory/\">ConvertKit</a>, and Bluehost rely on Akismet to protect their sites from spam and improve their user experience.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Kathryn Marr\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Do The Woo Community: Live From WCUS, It’s the Robbie and Robert Show\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76369\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://dothewoo.io/live-from-wcus-its-the-robbie-and-robert-show/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:416:\"<p>It\'s filled with laughs, insights and simply good times when co-hosts Robbie and Robert take over the mics at WCUS 2023.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/live-from-wcus-its-the-robbie-and-robert-show/\">Live From WCUS, It&#8217;s the Robbie and Robert Show</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"HeroPress: WordPress Is My Ball And Chain\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=5792\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"https://heropress.com/essays/wordpress-is-my-ball-and-chain/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-is-my-ball-and-chain\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9056:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/09/essay-cover-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"WordPress, and its inclusive community, led me down a path of redemption and acceptance.\" />\nHere is Justin&#8217;s story read aloud by artificial intelligence.\n\n\n\n\n\n\n<p>This month marks the 22nd anniversary of the terrorist attacked on the World Trade Center in the United States. I can still remember exactly where I was that morning, as I had an argument with my girlfriend the night before, and was sleeping on the couch of someone with whom I used drugs.</p>\n\n\n\n<p>It had only been four months since graduating high school, but I was already an addict. As a matter of fact, I was using drugs heavily at the end of my senior year, and the first summer after high school is when my life really started to spiral out of control.</p>\n\n\n\n<p>By the end of 2001 I was selling any drug I could get my hands on to make some money and feed my addiction (except heroin — that is always were I drew the line). Within a couple years I was the goto person for many substances, but primarily methamphetamine.</p>\n\n\n\n<p>Then I got caught, arrested, and thrown in jail. The prosecutor wanted to throw the book at me, recommending a 15 year sentence. But with my family supporting me in the courtroom and my lawyer fighting for me, the judge recognized that with this support, I did not deserve the full 15, and gave me 7 years, with 8 years probation instead. With good behavior, I did just under 3 years in prison.</p>\n\n\n\n<p>While in prison, I focused on my restoration. Learning new things, studying for certification in motor vehicle mechanics, and even starting work with accredited college courses funded by my tribe (Comanche Nation).</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p> I knew I had let down my family, and had something to prove.</p>\n</blockquote>\n\n\n\n<p>Through it all, my addiction, prison, and restoration, my family was always there for me. They knew the real me, not the person addicted to drugs and not the dealer feeding his addiction by providing for other addicts. That’s the person I know I needed to be again, for both myself and for them.</p>\n\n\n\n<p>Right after my release in January 2008, I immediately started working in a warehouse and attending college. At the company where I worked, the CEO gave me some excellent advice that I needed to control my narrative on the web (e.g. Google), so I built my first website using WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-pivoting\">Pivoting</h2>\n\n\n\n<p>At a young age, I was always fascinated by technology. I remember dabbling with computers in grade school, and tinkering on the internet in my teens. While I never did any kind of coding back then, the marketing aspect of web technologies did pique my interest. Then, drugs pulled me away from all that and sent me down a different path.</p>\n\n\n\n<p>When I found WordPress around April of 2008, all of that excitement started to come back. I would work my warehouse job during the day, drive to University of Central Oklahoma in the evening for a couple of college courses, then play around with WordPress themes (HTML, CSS, and some PHP) well into the night all that summer. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>This was the beginning of my love for WordPress. I was instantly addicted, and simply could not put down my computer, often getting little sleep before the next day (that’s okay, I was in my early 20s <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" /> ).</p>\n</blockquote>\n\n\n\n<p>By late 2010, I was taking on WordPress side projects, building websites, and even making online tutorials about WordPress. All this despite still working in the warehouse and taking night courses at college.</p>\n\n\n\n<p>In 2011, my work caught the eye of <a href=\"https://corymiller.com/\">Cory Miller</a>, who I had previously met at a marketing event in Oklahoma City. Cory owned and operated <a href=\"https://ithemes.com/\">iThemes</a>, a WordPress theme and plugin product company based out of Edmond Oklahoma. Although I was still working in the warehouse and taking college courses, Cory offered me a job working at iThemes as a web developer for WordPress themes and plugins. My major in college was marketing, and I still has a few more courses to complete before graduating, but I took the offer anyway and little did I know it was the beginning of a career in software development that led me where I am today.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-and-then-wordcamp\">And Then WordCamp&#8230;</h2>\n\n\n\n<p>My first WordCamp to both attend and speak was Fayetteville in 2011. That’s actually when I first met <a href=\"https://josepha.blog/\">Josepha Haden Chomphosy</a> (along with her <a href=\"https://heropress.com/essays/wordpress-tool-success/\">mother</a> and sister too). Of course, we went different ways in life but it is a marker that I like to remember as it helps me understand the different paths each of us take in this world. While I only spoke at a few other WordCamps, I attended many more over the years. The WordPress community, and its inclusiveness, was simply impossible for me to ignore.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>I know my experiences are different, and to understand this I also have to mention that I joined a few other communities through the years, but none ever fully accepted me, and one even did not let me keep coming when they found out I was a former convict.</p>\n</blockquote>\n\n\n\n<p>Although most people in the WordPress community never knew about my past, I never felt they would kick me out even if they did find out. Actually, I felt the community leaders honestly didn’t care at all about your past, culture, identity, etc., but rather just wanted you to love (or at least like) WordPress.</p>\n\n\n\n<p>And I did love WordPress. Still do.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Redemption and Acceptance</h2>\n\n\n\n<p>WordPress unexpectedly led me down a path of redemption and acceptance. For a long time I was angry at the world (especially corporate America) for not accepting me, and in those times of anger I would seek out WordPress people. No one even knew, but they were helping me nonetheless, always there when I needed, always a shiny light in the darkness.</p>\n\n\n\n<p>I’ve traveled the world with WordPress. Making WordPress friends in Asia, Australia, Europe, North &amp; South America and beyond. I love the WordPress community, and want to continue watching it flourish and grow. Every time I visit a WordCamp, I get to make new friends, see new faces, and meet awesome people of WordPress. I was able to build meaningful business and personal relationships, joining WordPress communities, attending and hosting WordPress events, and even speaking at several WordCamps across the World.</p>\n\n\n\n<p>Most of the WordPress companies for which I have worked had such amazing leaders, knowing about my past yet still giving me the opportunity to continue to demonstrate my new self. Two of which deserve an honorable mention: Cory Miller of Post Status (formerly iThemes) and <a href=\"https://10up.com/blog/author/10up/\">Jake Goldman</a> of <a href=\"https://10up.com/\">10up</a>. Both of these leaders embraced me wholly, and the things Jake said to when I mentioned my criminal past before my background check continue to give me confidence in knowing there are amazing leaders working in WordPress.</p>\n\n\n\n<p>The WordPress Community has proven itself to be more than just a platform for a tool. In my personal journey, I discovered that it represents a beacon of hope, a testament to what can be achieved when diverse minds come together under the banner of openness and collaboration. </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Albeit unknowingly, this community handed me a new lease on life, providing me with opportunities to learn, grow, and reinvent myself.</p>\n</blockquote>\n\n\n\n<p>Its core values of openness and inclusiveness aren&#8217;t just buzzwords but are deeply rooted in the ethos of every member who contributes, either by writing code, designing themes, or even just by sharing experiences. It&#8217;s a reminder that every individual, irrespective of their background or skillset, has the potential to add value to this thriving ecosystem. As beneficiaries of this incredible community, it falls upon us to ensure that we not only appreciate these values but also embody them. We must commit to fostering an environment where every decision we make, every action we undertake, further deepens the culture of inclusivity and collaboration.</p>\n\n\n\n<p>Thank you WordPress, and the WordPress Community. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2764.png\" alt=\"❤\" class=\"wp-smiley\" /></p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-is-my-ball-and-chain/\">WordPress Is My Ball And Chain</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 12:26:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Justin Kopepasah\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:136:\"WPTavern: WooCommerce Blocks 11.0.0 Adds Product Collection Block in Beta, 10.9.0 Integrates Product Button with the Interactivity API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148515\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"https://wptavern.com/woocommerce-blocks-11-0-0-adds-product-collection-block-in-beta-10-9-0-integrates-product-button-with-the-interactivity-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4015:\"<p>WooCommerce is experimenting with improving the store experience through the <a href=\"https://github.com/woocommerce/woocommerce-blocks/issues/8219\">addition of the Interactivity API</a> to the WooCommerce Blocks plugin. The new API, which was announced earlier this year, will allow developers to build interactive blocks that support frontend experiences where visitors can interact with content without having to refresh the page. The WordPress contributors working on the API are <a href=\"https://wptavern.com/start-testing-wordpress-new-interactivity-api\">encouraging developers to test it</a> with their own blocks.</p>\n\n\n\n<p><a href=\"https://developer.woocommerce.com/2023/08/16/woocommerce-blocks-10-9-0-release-notes/?mc_cid=b50d0ff43c&mc_eid=68ffa9a210\">WooCommerce Blocks 10.9.0</a>, released in mid-August, integrated the Product Button with the Interactivity API to support real-time counter updates for the mini-cart, smoother animations, and better transitions from ‘Add to Cart’ to ‘Loading’ status to show the quantity in the cart when a product is added. </p>\n\n\n\nWooCommerce Blocks <a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/10006\">PR #10006</a>\n\n\n\n<p>The difference is subtle but creates a much smoother shopping experience with nearly instantaneous feedback for the user. Contributors are also exploring how the Interactivity API can be used to improve frontend filters, including the rating, price, stock, and attributes filters. The API will eventually land in Gutenberg and WordPress in the future, but in the meantime WooCommerce is experimenting to see how the plugin&#8217;s blocks can benefit from it.</p>\n\n\n\n<p><a href=\"https://developer.woocommerce.com/2023/08/31/woocommerce-blocks-11-0-0-release-notes/\">Version 11.0.0</a> was released last week introducing the new Product Collection block in beta:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Like the Products block, you can choose what criteria affect the list of blocks displayed to shoppers and control the product layout in the list/grid by the various element blocks.</p>\n\n\n\n<p>Unlike the Products block, which is a Query loop block variation, this block is a standalone block, enabling us to tailor the block further to better meet the merchant’s needs.</p>\n</blockquote>\n\n\n\n<p>The Product Collection block is very similar to the Products block from which it was forked, except it is not built as a variation of the Query Loop. It comes with improvements around Inspector controls as compared to the current Products block, as well as a basic set of patterns. The block already has the <a href=\"https://github.com/woocommerce/woocommerce-blocks/issues/10328\">Interactivity API integrated</a> for the same improved frontend performance.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2047\" height=\"1584\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/product-collection.webp\" alt=\"\" class=\"wp-image-148556\" />Product Collection block &#8211; image source: <a href=\"https://developer.woocommerce.com/2023/08/31/woocommerce-blocks-11-0-0-release-notes/\">WooCommerce Blocks 11.0.0 release post</a>\n\n\n\n<p>Version 11.0.0 also enables manual migration of Products to Product Collection. An upgrade notice will appear in the Inspector Controls, informing users that they will get more features with the Product Collection block:</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"500\" height=\"466\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/products-update-to-product-collection-500x466.png\" alt=\"\" class=\"wp-image-148557\" />\n\n\n\n<p>As the Product Collection block is still in beta, WooCommerce Blocks has not yet changed existing templates that have Product blocks. The development team is looking for more feedback on this block before moving it out of beta. Check out the <a href=\"https://developer.woocommerce.com/2023/08/31/woocommerce-blocks-11-0-0-release-notes/\">release post</a> for more enhancements and bug fixes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Sep 2023 03:59:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WPTavern: Human Made to Host “AI: The Next Chapter” Virtual Conference on September 14, 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148507\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wptavern.com/human-made-to-host-ai-the-next-chapter-virtual-conference-on-september-14-2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3753:\"<p>Human Made, a leading enterprise WordPress agency, is organizing a followup event to the community&#8217;s first ever <a href=\"https://wptavern.com/human-made-to-host-ai-for-wordpress-event-may-25-2023\">AI for WordPress</a> virtual conference that it hosted in May 2023. The second edition is called &#8220;<a href=\"https://hello.humanmade.com/ai-the-next-chapter\">AI: The Next Chapter</a>&#8221; and will take place online on September 14, 2023, at 10AM EST.</p>\n\n\n\n<p>The first event had 13 speakers and drew more than 600 attendees. It focused on WordPress and AI tools that people are building with the emerging technology. (Videos of all the sessions are <a href=\"https://www.youtube.com/playlist?list=PL1H81eN4d97iRNVivTvkWBdEr_3YTzZLc\">available on YouTube</a>.) This next edition will explore some of the wider societal, ethical, and tech issues related to the subject. </p>\n\n\n\n<p>The keynote and intro will feature Matt Mullenweg on &#8220;AI and the future of WordPress,&#8221; along with Human Made CEO Tom Willmot. Dr. Eleanor Drage, a senior research fellow at the University of Cambridge and co-host of The Good Robot podcast, will be speaking about AI and gender. Open source LLM researchers from Georgian will also join for a panel discussion on why they believe open source AI is the best way for companies to leverage this technology.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1956\" height=\"1310\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-05-at-5.44.14-PM.png\" alt=\"\" class=\"wp-image-148538\" />\n\n\n\n<p><a href=\"https://hello.humanmade.com/ai-the-next-chapter\">Registration</a> is free and participants can sign up on the event&#8217;s website. A confirmation email is sent out to registrants and more information will follow via email.</p>\n\n\n\n<p>Human Made has developed a keen interest in fostering exploratory dialogue through these events, as the company is working on AI products and <a href=\"https://humanmade.com/ai-for-wordpress/\">custom implementations for clients</a>. At the first event, the agency showcased some early work in the <a href=\"https://www.altis-dxp.com/accelerate/\">Altis Accelerate</a> plugin and have been working with clients to determine how AI can augment existing marketing and editorial workflows. </p>\n\n\n\n<p>&#8220;The progress and innovation we’re seeing in AI is so rapid at the moment that it kind of demands you stay close to it, keep following what’s happening, and keep learning,&#8221; Human Made Marketing Director Alex Aspinall said. &#8220;AI is one of our core areas of focus, across all parts of the business, so we’ll definitely be building, sharing, and hosting more in the space in the months to come. Doing all this in the open is really important to us, so the events are a great platform.&#8221;</p>\n\n\n\n<p>During the first event, Aspinall reports that Human Made saw registrations and participation across a wide range of business verticals and role disciplines, with conversations continuing months after the first event. <br /><br />&#8220;While there are a few businesses and individuals building things, experimenting, and commercializing their work in the area, the vast majority are still finding their way through, figuring out how best to implement AI to deliver tangible benefit to their companies, their clients, their teams, and their day-to-day lives,&#8221; Aspinall said.<br /><br />&#8220;Despite the level of advancement we’ve already seen, we’re still right at the start of this thing, which is really exciting. There’s a lot to learn, and considerable edge available for those experimenting and putting things in place. Imagine what we’ll be talking about this time next year!&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Sep 2023 22:09:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Do The Woo Community: WordCamp US, the First Recap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76362\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://dothewoo.io/wordcamp-us-the-first-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:362:\"<p>BobWP and some attendees share a few highlights of WordCamp US 2023 as well as some WordPress origin stories.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wordcamp-us-the-first-recap/\">WordCamp US, the First Recap</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Sep 2023 13:23:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Matt: Techcrunch with Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=96577\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://ma.tt/2023/09/techcrunch-with-gutenberg/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:245:\"<p>Jamie Marsland has this great YouTube video where he rebuilds <a href=\"https://techcrunch.com/\">TechCrunch.com</a> just using core blocks in WordPress 6.3 in 30 minutes. Worth checking out!</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Sep 2023 06:59:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=96532\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"https://ma.tt/2023/09/fear/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:358:\"<p>Zeynep Tufekci has a great article, <a href=\"https://www.nytimes.com/2023/09/03/opinion/columnists/burning-man-rain-mud.html\">One Thing Not to Fear at Burning Man</a>, that covers well what I have experienced as well growing up in Houston through hurricanes and other natural disasters—that in times of need people help each other in ingenious ways.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Sep 2023 21:18:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WordPress.org blog: WP Briefing: Episode 61: Community, Summit, all at  Washington D.C.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=15911\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wordpress.org/news/2023/09/episode-61-community-summit-all-at-washington-d-c/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17592:\"<p>Join WordPress Executive Director Josepha Haden Chomphosy as she discusses the latest from the Community Summit and her takeaways from the 2023 event in Washington, D.C.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br />Editor: <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo: <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production: <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br />Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li>The 2023 <a href=\"https://communitysummit.wordcamp.org/2023/\">Community Summit</a> in Washington, DC</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/02/episode-49-everything-you-need-to-know-about-the-community-summit/\">WP Briefing Episode 49</a>: Everything You Need to Know About the Community Summit!</li>\n\n\n\n<li><a href=\"https://href.li/?https://make.wordpress.org/community/2023/05/08/the-next-generation-of-wordcamps/\">The Next Generation of WordCamps</a></li>\n\n\n\n<li><a href=\"https://href.li/?https://make.wordpress.org/community/2023/05/24/idea-generation-next-gen-wordcamps/\">Idea generation: Next Gen WordCamps!</a></li>\n\n\n\n<li><a href=\"https://pressnomics.com/\">PressNomics</a></li>\n\n\n\n<li><a href=\"https://loopconf.io/\">LoopConf</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/\">WordPress Community Summit</a></li>\n\n\n\n<li><strong>A small list of big things</strong>\n<ul>\n<li><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/community/2023/08/23/call-for-ideas-new-features-for-our-nexgen-wp-events-central-page/\" target=\"_blank\">Call for ideas: new features for our NexGen WP events central page</a>&nbsp;&#8211; Open call for ideas to find the most desirable features for a future homepage that would host a list of all NextGen WordPress events. </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Introducing Twenty Twenty-Four</a>&nbsp;&#8211; Announced at Contributor Day, this new theme will be part of the 6.4 release. </li>\n\n\n\n<li>With the release of 6.3 behind us,&nbsp;<a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/6-4/\" target=\"_blank\">we are working hard on bringing 6.4</a>&nbsp;to the community. You can get involved with the development of this important release. </li>\n\n\n\n<li>A successful WCUS is behind us, and if you missed the event, we have you covered. <a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">Here is a recap of the event</a>.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-15911\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong>&nbsp;Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro Music)&nbsp;</p>\n\n\n\n<p>[00:00:39] <strong>Josepha:</strong>&nbsp;We are back and catching up from our midyear break. And in true WordPress fashion, we&#8217;re just going to start off running. The WordPress Community Summit happened a couple of weeks ago. I&#8217;ve been talking about it on this podcast for a few months now, but if you&#8217;ve missed it and you want a refresher, go ahead and give episode 49 a listen.</p>\n\n\n\n<p>At the Community Summit, there were 125 people, if I remember correctly. And we covered a wide array of topics that were brought to us directly from the community itself. While the event is small, it is specifically designed for gathering and sharing information. So, I&#8217;ve got some top-level trends that I noticed that I&#8217;m going to share with you all today, as well as just like a reminder of what happens after a Community Summit.</p>\n\n\n\n<p>[00:01:27] <strong>Josepha:</strong>&nbsp;So there are three, maybe four, big trends that I noticed. The first one that I noticed is that we have a lot of discussions right now about contributor acknowledgment. That also, for what it&#8217;s worth, came with an unresolved question around whether acknowledgment and recognition are the same. I don&#8217;t think they are the same.</p>\n\n\n\n<p>But it also was part of a conversation around whether we treat those two things the same. And if they are not the same, should we treat them differently? And et cetera, et cetera, et cetera. For folks who&#8217;ve been around for a bit, you know, that we spent a lot of time working on our contributor recognition a few years back and had really made quite a bit of difference in just reported feelings about how the community felt they were being recognized for their contributions.</p>\n\n\n\n<p>And so a lot of the conversations that we ended up having were around whether or not the project as a whole has changed the way that we provide that recognition or acknowledgment. Or, as an alternative, if the community that is supporting WordPress has changed how they would like to be recognized.</p>\n\n\n\n<p>[00:02:32] <strong>Josepha:</strong>&nbsp;There were also some questions about whether or not making sure that contributors can see their impact. Like they can say, I contributed 10 hours last month, and these are the two things that I got accomplished over there, and that everyone else can see those things too. So, how we can do that more easily while also not having so many metrics and making the metrics so prevalent that we start to close out the people who are truly just doing this for fun.</p>\n\n\n\n<p>Like many of the problems that we have at the Community Summit, this is a bunch of pretty much unsolved mysteries at the moment. But it did; it came up across probably five or six different sessions that I heard about, quite a few that I went to myself, and so contributor acknowledgment and recognition is on our minds again.</p>\n\n\n\n<p>A second thing that I noticed across multiple sessions, and this one honestly is not a surprise at all, is that there were a lot of questions about what the next big thing is after Gutenberg. I always love when people are asking big questions about what comes next because it means that we all still believe that there will be a next.</p>\n\n\n\n<p>[00:03:43] <strong>Josepha:</strong>&nbsp;And so I never hesitate when I hear these questions to give some ideas about what I think might be coming. But a lot of the discussions that we were having were around, we think this is coming, but now that we think this is coming, what should we do now to make sure that we are ready for it? One of the biggest assumptions that we all had is that for the CMS, for the software itself, probably our next big area after Gutenberg is going to be something about artificial intelligence.</p>\n\n\n\n<p>Matt pointed out in his presentation that he has told us twice to learn something deeply. One was in 2016 when he said, learn JavaScript Deeply. And then one was in 2022 when he said to learn AI deeply. And so we all kind of are guessing that that is our future area. And so that&#8217;s an area for everyone to spend some time in. Make sure you understand it. Make sure you know it a bit.&nbsp;</p>\n\n\n\n<p>The second thing that came up as like a future, where are we going here? It was kind of on the business-y side. It was on a lot of questions about enterprise and are we selling properly to enterprise. Can we sell, can we appeal to enterprise? Whose job is it to sell any of these things? Questions like that. So, lots of business questions again. This is not something that I have any concerns about. I&#8217;m very excited to see that people are talking about it. That&#8217;s been a topic of conversation since, I want to say, February of this year. And so it also wasn&#8217;t a surprise inclusion today. And, and I was excited to see, am excited to see what we get out of those conversations over time.&nbsp;</p>\n\n\n\n<p>[00:05:17] <strong>Josepha:</strong>&nbsp;As far as like questions around what&#8217;s next for the community, I&#8217;m going to address that separately because it was a huge question for everyone. So I&#8217;m going to discuss that as soon as we get finished with this chunk about like the big thing that, that is coming after Gutenberg.</p>\n\n\n\n<p>But, from an ecosystem perspective. Like a WordPress project operations perspective, this came up a couple of times. Never in as clear a word, a set of words as that, but the question about, like, what are we doing with our tools? Are we making sure that we are keeping the tools that our contributors use maintained and still in an excellent space with features that are useful and, necessary, and requested?</p>\n\n\n\n<p>And so that is a big question. I do have a lot of questions about that. Also, there are so many tools that I have wanted in order to make organizing the WordPress community better and easier, but also making contributing better and easier. And hopefully, here soon, we have an opportunity to get to some of those.</p>\n\n\n\n<p>[00:06:16] <strong>Josepha:</strong>&nbsp;So, the third big trend that I kept seeing at the Community Summit is actually about the community itself, specifically about events. So I was part of or listened to many, many, many conversations over the course of the week that were specifically focused on what we&#8217;re going to do with the future of our events. Like are meetups still sustainable? Are WordCamps still sustainable? And that&#8217;s from not only the idea of sustainability that we all tend to know from like an ecological standpoint but also, you know, checking in on the resources. So the kinds of questions that folks had were, is it time to continue having many small events, or is it time to move to a few giant events?</p>\n\n\n\n<p>Should we bring back midsized, WP-adjacent events like PressNomics or LoopConf? And if we are bringing those back, do we want to have them be part of a semi-official thing along with a clearly WordPress event and like do joint sales in there? Try to figure out how to get people from one to the other, so that it&#8217;s not just WordPress people that we&#8217;re talking to, but also business people and advanced developers, things like that.</p>\n\n\n\n<p>There was also a lot of discussion about whether or not we have gotten too big, should we double down on our grassroots efforts? Just go all the way back to, like, BarCamp style, WordPress in a forest kind of thing.&nbsp;</p>\n\n\n\n<p>[00:07:46] <strong>Josepha:</strong>&nbsp;And yeah, and among all of these conversations, there were questions about the resources that we need. Do we have what we need now? Do we have plans for how to maintain those resources in the future? Do we have enough time? Do we have enough money? Do we have an expertise? The people? So many questions, so many questions. And on the community side of things, we also had a lot of questions that are routine in open source. Like, do we have a pipeline for future maintainers, for future team reps, for future leaders in the project? All of the questions.&nbsp;</p>\n\n\n\n<p>So, those are the three slash four, depending on how you break it out, really big trends that I saw across the conversation at the Community Summit. And I don&#8217;t necessarily know the answers to all of these things. Like, I know what my gut tells me, I know what I believe the answer to be. From my own perspective, but as you&#8217;ve been told many times with many eyes, all bugs are shallow. And so here is what happens next with a Community Summit. So we&#8217;ve gathered all of these things together. We&#8217;ve had these conversations, and now all of the notes from every conversation that we had will be put on make.wordpress.org/summit.&nbsp;</p>\n\n\n\n<p>[00:09:10] <strong>Josepha:</strong>&nbsp;There, you can do any of the following three things, but at least do one before we get any further. I think it&#8217;s important to remind everyone that no decisions were made at the Community Summit. There are a few things that will come out of the Community Summit where the answer the way forward is really obvious. And so those probably will get done quickly thereafter because it&#8217;s just an obvious thing to do. It makes sense for everyone in the project. It makes sense for everyone who&#8217;s using WordPress. Whatever reason.&nbsp;</p>\n\n\n\n<p>So those things will probably move quickly, but mostly not even mostly there were no decisions made. And so if it looks like something is moving quickly there, it is because it makes sense after the fact. So there&#8217;s that. But the three things that you can do in order to take part in this information gathering and sharing that happened at the Community Summit.&nbsp;</p>\n\n\n\n<p>Number one, head over to make.wordpress.org/summit and just read the notes. There are a lot of them you can pick and choose based on the teams you contribute to or the topics that are specifically interesting. Or if you have been assigned to read one of these things, obviously, go ahead and read that. But find the notes read them. Take a look at the discussion as far as you can tell it happened and get a sense for what the essential question is.</p>\n\n\n\n<p>The second thing that you can do while you&#8217;re there is that you can join in that discussion right there in the comments if you would like to. You can, if you feel like your perspective is not quite accounted for in that, obviously leave some comments and let folks know. But also, if you feel like your perspective was accounted for, but there&#8217;s also a very specific question that was not necessarily answered or not even brought up, share those as well. That&#8217;s stuff that we would like to know as we are working through this.&nbsp;</p>\n\n\n\n<p>And then the third thing that you can do is you can take those conversations, and if there&#8217;s anything that looks like it&#8217;s particularly relevant to your local WordPress community, absolutely take those there and have those conversations with them.</p>\n\n\n\n<p>[00:11:23] <strong>Josepha:</strong>&nbsp;And once you&#8217;ve had those conversations, let us know what you thought also in those comments, or take it directly into your weekly teams&#8217; chat, either way. We want to hear what you think about the questions that were brought because you brought them to us. And so you should have an opportunity to tell us what you think.</p>\n\n\n\n<p>[00:11:39] (Music Interlude)&nbsp;</p>\n\n\n\n<p>[00:11:48] <strong>Josepha:</strong>&nbsp;That brings us now to our small list of big things. My friends, there&#8217;s nothing but big things left for the rest of the year. And so here we go. Number one, uh, I mentioned it quite a bit. There&#8217;s a conversation, an ongoing conversation about the future of events for our community. Right now, there is an open call for ideas, new features for our NextGen WordPress events, especially on the page that exists on WordCamp Central.</p>\n\n\n\n<p>So, we want to find the most useful and desirable features for a future homepage on central.wordcamp.org that would host a list of all of our upcoming WordPress events. And so we want your opinion there. Please let us know what would be especially useful to you as you are looking for WordPress events to attend.</p>\n\n\n\n<p>The second thing is that we introduced 2024, the default theme that is coming with WordPress 6.4, was announced. We have had, I think, 32 contributors to it at the time of this recording. And yeah, it&#8217;s beautiful. It&#8217;s got a lot of different implementation options, a lot of default patterns, and curated patterns so that you can get exactly what you want out of that theme. I think it&#8217;s going to make a great default theme, a great starter theme for our final release of the year.&nbsp;</p>\n\n\n\n<p>And then, speaking of 6.4, with the release of 6.3 behind us, we are working hard on bringing 6.4 to the community. You can get involved with the development of that. There is a core chat every Wednesday. It happens. I want to say at 21:00 UTC, but I don&#8217;t actually know off the top of my head. I just go when my calendar tells me to go, and I live in the central time zone. And so, my UTC conversion is not the best, but we will leave the actual information about that in the show notes so that you can see it. But you can also go over to make.wordpress.org, and then there&#8217;s a little card on that homepage that tells you exactly when those core meetings are, including the new contributor meeting, which happens every two weeks.&nbsp;</p>\n\n\n\n<p>And then the fourth thing is that there is a successful WordCamp US behind us. That is our final flagship event of the year, which is always exciting. If you missed it, for one, we missed you. And for two, we have you covered. We&#8217;ve got a recap of the event. There is a link to that in the show notes as well.&nbsp;</p>\n\n\n\n<p>[00:14:05] <strong>Josepha:</strong> And that, my friends, is your small list of big things. Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p>[00:14:15] (Music Outro)&nbsp;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 Sep 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"Gutenberg Times: Talks at WordCamp US, Notes from the Community summit. A wishlist, reflections and a preview –Weekend Edition 266\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25401\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"https://gutenbergtimes.com/talks-at-wordcamp-us-notes-from-the-community-summit-a-wishlist-reflections-and-a-preview-weekend-edition-266/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20666:\"<p>Howdy, </p>\n\n\n\n<p>Apart from <a href=\"https://wordpress.org/news/2023/08/the-future-of-wordpress-whats-next-for-gutenberg/\">The Future of WordPress &amp; What’s Next for Gutenberg</a> with the keynotes by Josepha Haden Chomphosy and Matt Mullenweg, including Q &amp; A, I still haven&#8217;t caught up with the videos from WordCamp US. Below is a list with links to the talks I want to see and hopefully catch up over this weekend. </p>\n\n\n\n<p>Then the <a href=\"https://make.wordpress.org/summit/\">Community Summit discussion notes</a> are also posted, I haven&#8217;t digested any of them yet. This part of my todo-list is also below. </p>\n\n\n\n<p>And I hear you say: Who has time for all this? Well, that is a good question. The project has some great teams, that do outstanding work! And that&#8217;s the underlying reason why I only curate news about the block editor. No one can keep track of it all. ?</p>\n\n\n\n<p>And I leave you to the rest of the newsletter. Enjoy, learn and share! </p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-camp-us-talks\">WordCamp US Gutenberg Talks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#2-community-summit\">Community Summit</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-camp-us-talks\">WordCamp US Gutenberg Talks</h2>\n\n\n\n<p>The full playlist of recorded talks is available on YouTube: <a href=\"https://www.youtube.com/playlist?list=PL4KP0VZtEI8rBpssGbR0E0wcBqeNeGEWT\"><strong>WordCamp US 2023</strong></a></p>\n\n\n\n<p>? <a href=\"https://www.youtube.com/watch?v=ZZq9WBqlKW8\">The Independent Theme Developer’s Field Guide to Modern WordPress</a> with <a href=\"https://us.wordcamp.org/2023/speaker/michelle-schulp-hunt/\">Michelle Schlup Hunt</a> (<a href=\"https://us.wordcamp.org/2023/session/the-independent-theme-developers-field-guide-to-modern-wordpress/\">Session description</a>, <a href=\"https://speakerdeck.com/marktimemedia/field-guide-2023\">slides</a>) </p>\n\n\n\n<p>? <a href=\"https://www.youtube.com/watch?v=9UYzZzb-LaU\"><strong>Building a thoughtful block editing experience</strong></a> with Aurooba Ahmed (<a href=\"https://us.wordcamp.org/2023/session/building-a-thoughtful-block-editing-experience/\">Session description</a>)</p>\n\n\n\n<p>? <strong><a href=\"https://www.youtube.com/watch?v=c0BbXaZqQAo&\">For All Userkind: NASA Web Modernization and WordPress</a></strong> with <a href=\"https://us.wordcamp.org/2023/speaker/abby-bowman/\">Abby Bowman</a><a href=\"https://us.wordcamp.org/2023/speaker/j-j-toothman/\">J.J. Toothman</a> (<a href=\"https://us.wordcamp.org/2023/session/friday-keynote/\">Session description</a>)</p>\n\n\n\n<p>? <strong><a href=\"https://www.youtube.com/watch?v=581pE25vAGQ\">Hands on with NASA’s new digital platform NASA Workshop</a></strong> with <a href=\"https://us.wordcamp.org/2023/speaker/abby-bowman/\">Abby Bowman</a> and <a href=\"https://us.wordcamp.org/2023/speaker/j-j-toothman/\">J.J. Toothman</a> (<a href=\"https://us.wordcamp.org/2023/session/hands-on-with-nasas-new-digital-platform/\">Session description</a>)</p>\n\n\n\n<p>? <strong><a href=\"https://www.youtube.com/watch?v=O8r06QETAlw\">Ford Foundation: Audio Described Video Plugin</a></strong> with <a href=\"https://us.wordcamp.org/2023/speaker/vajaah-e-parker/\">Vajaah E Parker</a><a href=\"https://us.wordcamp.org/2023/speaker/kurtis-shaner/\">Kurtis Shaner</a> (<a href=\"https://us.wordcamp.org/2023/session/ford-foundation-audio-described-video-plugin/\">Session description</a>)</p>\n\n\n\n<p>? <a href=\"https://www.youtube.com/watch?v=bbQNheCHjTk\"><strong>All the President&#8217;s Websites </strong></a>with <a href=\"https://us.wordcamp.org/2023/speaker/andrew-nacin-helen-hou-sandi/\">Andrew Nacin, Helen Hou-Sandí</a></p>\n\n\n\n<p>? <strong><a href=\"https://www.youtube.com/watch?v=8DbEsBzMaWA\">Anatomy of an Accessible Navigation Menu</a></strong> with <a href=\"https://us.wordcamp.org/2023/speaker/steve-jones/\">Steve Jones</a> (<a href=\"https://us.wordcamp.org/2023/session/anatomy-of-an-accessible-navigation-menu/\">session description)</a></p>\n\n\n\n<p>? <a href=\"https://www.youtube.com/watch?v=uehAKO6zwkQ\"><strong>The Headless Block Editor</strong></a> with <a href=\"https://us.wordcamp.org/2023/speaker/sean-blakeley/\">Sean Blakeley</a> (<a href=\"https://us.wordcamp.org/2023/session/the-headless-block-editor/\">session description</a>)</p>\n\n\n\n<p>? <a href=\"https://www.youtube.com/watch?v=gDi7n9XcVKM\"><strong>The Future of WordPress</strong></a> with <a href=\"https://us.wordcamp.org/2023/speaker/josepha-haden-chomphosy/\">Josepha Haden Chomphosy</a> (<a href=\"https://us.wordcamp.org/2023/session/josepha-haden-chomphosy-on-the-future-of-wordpress/\">Session description</a>)</p>\n\n\n\n<p>? <a href=\"https://www.youtube.com/watch?v=yDbASG9KOaE\"><strong>Gutenberg Next</strong> </a>with <a href=\"https://us.wordcamp.org/2023/speaker/matt-mullenweg/\">Matt Mullenweg</a> </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><a href=\"https://github.com/WordPress/gutenberg/releases/tag/v16.6.0-rc.1\"><strong>Gutenberg 16.6 RC</strong></a> is available now for testing, and the stable release is scheduled for September 6th, 2023. I took a peak at the <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v16.6.0-rc.1\">changelog</a> to prepare for the next episode of the Gutenberg Changelog #89 with <strong>Nadia Maya Ardiani</strong> as a special guest. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>?️ </strong> Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-89-gutenberg-16-6-font-library-default-theme/\">Gutenberg Changelog #89 – Gutenberg 16.6, default theme and Font Library</a> with Nadia Maya Ardiani  as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"2-community-summit\">Community Summit</h3>\n\n\n\n<p>Below you find a short list of discussion notes from the <strong>Community Summit</strong> directly connected with contributing to core and Gutenberg. When you read notes on the Make Summit blog, keep in mind that two important guidelines governed the Community Summit:  <a href=\"https://make.wordpress.org/summit/2023/08/16/non-attribution/\">no attribution</a> and no decisions. </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/summit/2023/08/23/community-summit-discussion-notes-addressing-backwards-compatibility-in-gutenberg/\">Addressing backwards compatibility in Gutenberg</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/22/community-summit-discussion-notes-aligning-processes-and-contributions-between-wordpress-core-and-gutenberg/\">Aligning processes and contributions between WordPress Core and Gutenberg</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/summit/2023/08/22/community-summit-discussion-notes-accessibility-in-the-wordpress-project/\">Accessibility in the WordPress Project</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Jamie Marsland</strong> recreated TechCrunch&#8217;s Website in 30 minutes and shows you in <a href=\"https://www.youtube.com/watch?v=RghKQZmYwYI\">this 15-minute video</a> how he did it. <a href=\"https://www.youtube.com/watch?v=RghKQZmYwYI\"><strong>WOW! I rebuilt TechCrunch.com in only 30 mins with WordPress</strong></a>. You&#8217;ll also learn a few things: How to have a sticky header, how to create pro-post layouts, how to change your Global style, how image ratio features work and how to use templates. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/JMartellaWebDev\">Jacob Martella</a> </strong> posted his <a href=\"https://jacobmartella.me/web-development/wordpress/wishlist-for-the-wordpress-site-editor-as-it-heads-to-phase-3/\"><strong>Wishlist for the WordPress Site Editor as it Heads to Phase 3</strong></a>. He explains a few missing items in broad strokes: better responsive controls, more inline options, continued improvement on accessibility and more of the Block Visibility plugin features. The latter is a nice shoutout to <a href=\"https://wordpress.org/plugins/block-visibility/\">Nick Diego&#8217;s plugin </a>that has been available in the plugin repo for three years, and shows 10,000 + active installations. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/karmatosed\">Tammie Lister</a>,</strong> co-tech lead for WordPress 6.4 had thoughts and published them: <strong><a href=\"https://presselements.com/reflections-on-the-admin-design-proposal/\">Reflections on the admin design proposal</a>.</strong> On the way from old to new, it needs opinions, listening, documenting, and considering accessibility and extensibility. Implementation of the proposal requires all WordPress teams to become part of the revamp. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/codenex\">Niels Lange</a> </strong>published the <a href=\"https://developer.woocommerce.com/2023/08/16/woocommerce-blocks-10-9-0-release-notes/\"><strong>WooCommerce Blocks 10.9.0 Release&nbsp;Notes</strong></a>. He listed as notable that the team uses the Interactivity API together with the Product Button block and Pagination, which improves user experience considerably.  In this version, the team continued making  performance improvement to the plugin. You can also find improvements to patterns for footer and features products, and with every release fixed a few bugs. The <a href=\"https://wordpress.org/plugins/woo-gutenberg-products-block/\">WooCommerce Blocks plugin </a>is available in the WordPress repository</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/mattmedeiros\">Matt Medeiros</a></strong> took a peak at the early version of the new default theme and shared his thoughts in <strong><a href=\"https://thewpminute.com/previewing-the-upcoming-twenty-twenty-four-theme-for-wordpress/\">Previewing the Upcoming Twenty Twenty-Four Theme for WordPress</a></strong>. &#8220;With a focus on versatility, ease of use, and multiple website types, Twenty Twenty-Four is shaping up to be one of the best and most flexible default starter themes WordPress has released in years&#8221; he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/karks88\">Eric Karkovack</a></strong> asked <strong>Brian Gardner </strong>in his interview &#8220;<a href=\"https://thewpminute.com/will-there-ever-be-a-market-for-commercial-block-themes/\"><strong>Will There Ever Be a Market for Commercial Block Themes?</strong></a>&#8221; Tl:DR: &#8220;I’m incredibly optimistic. Having been instrumental in molding the premium WordPress theme market in the late 2000s, we stand at the precipice of a new renaissance, much like before.&#8221; was Brian Gardner&#8217;s answer. Read more about the challenges and opportunities of Block Themes in WordPress. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong>&#8216;s latest tutorial covers  <a href=\"https://developer.wordpress.org/news/2023/08/adding-and-using-custom-settings-in-theme-json/\"><strong>Adding and using custom settings in theme.json</strong></a>. Custom settings are &#8220;one of the most powerful ways to build on top of the block system but is often underutilized by the theming community.&#8221; he wrote. </p>\n\n\n\n<a href=\"https://developer.wordpress.org/news/2023/08/adding-and-using-custom-settings-in-theme-json/\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/09/Screenshot-2023-09-02-at-17.30.53.png?resize=652%2C242&ssl=1\" alt=\"\" class=\"wp-image-25421\" width=\"652\" height=\"242\" /></a>Code example of custom settings in theme.json. <a href=\"https://developer.wordpress.org/news/2023/08/adding-and-using-custom-settings-in-theme-json/\">Read what happens then </a>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p><a href=\"https://twitter.com/aurooba\"><strong>Aurooba Ahmed</strong> </a>and <strong><a href=\"https://twitter.com/briancoords\">Brian Coords</a></strong> created a couple of tools for block development and made them publically available: </p>\n\n\n\n<ul>\n<li>The <strong><a href=\"https://wphelpers.dev/blocks\">WordPress Core Blocks Explorer</a></strong> is a searchable guide to all the&nbsp;core blocks&nbsp;and their properties. You can also obtain a complete&nbsp;<a href=\"https://wphelpers.dev/api/core-blocks\">JSON object of all the core blocks</a>&nbsp;and their properties instead. </li>\n\n\n\n<li>The <a href=\"https://wphelpers.dev/icons\"><strong>WordPress Icon Library,</strong></a> a searchable guide to the complete&nbsp;WordPress Icon Library&nbsp;package from the Gutenberg repository </li>\n</ul>\n\n\n\n<p>Both worth a browser bookmark ? Ahmed and Coords also finished their first season of their <a href=\"https://viewsource.fm/\">ViewSource</a> podcast. If you want to give it a binge listen, just search for View Source on your favorite podcast app or download it from the <a href=\"https://viewsource.fm/\">website</a>. </p>\n\n\n\n<img width=\"652\" height=\"443\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/09/Screenshot-2023-09-02-at-17.41.25.png?resize=652%2C443&ssl=1\" alt=\"\" class=\"wp-image-25423\" />Example:<a href=\"https://wphelpers.dev/icons/blockDefault\"> Icon information for blockDefault</a> \n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>If you missed last week&#8217;s Developer Hours, the recording is now available on WordPressTV: <a href=\"https://wordpress.tv/2023/08/31/developer-hours-introduction-to-the-html-api/\"><strong>Developer Hours: Introduction to the HTML&nbsp;API</strong></a> with <strong>Michael Burridge</strong> and <strong>Dennis Snell</strong>. The show started with some quick demos of using the new HTML APIs, then briefly discussed the limits of the new systems, and finished with a time for questions and discussion with participants. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/vmwocto\">Angel De Miguel</a></strong>, staff engineer at VM ware working on the WebAssembly, his colleague <strong><a href=\"https://twitter.com/ereslibre\">Rafael Fernández López</a></strong> and Automattic&#8217;s <strong><a href=\"https://twitter.com/adamzielin\">Adam Zieliński</a></strong> co-authored  this post for the WordPress Developer blog: <a href=\"https://developer.wordpress.org/news/2023/08/exploring-the-future-of-web-development-with-webassembly-and-php/\"><strong>Exploring the future of web development with WebAssembly and PHP</strong></a>. &#8220;Imagine that you can now&nbsp;run PHP code in a new set of environments like a browser, serverless, edge, and even embedded&nbsp;in a different application. That opens a new set of possibilities for PHP.&nbsp; At this point is when PHP meets WebAssembly.&#8221; the wrote. You&#8217;ll learn what WebAssembly is, how it makes PHP portable like JavaScript, how it is the foundation of WordPress Playground, about sharing libraries across languages and so much more. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/Gtarafdarr\">Gobinda Tarafdar</a> </strong>started a new project, <strong><a href=\"http://csscrafter.com\">CSS Crafter</a> </strong>&#8211; a CSS Library for Gutenberg Blocks with premade CSS-styled blocks. Select the style and copy/paste the CSS + Block code for patterns or your custom blocks. Some of them also include pure CSS animations. It&#8217;s a fun project, that might shorten the creation time considerably. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>You don&#8217;t have to create custom blocks to customize the editor for your clients. <strong>Nick Diego</strong> posted an<a href=\"https://developer.wordpress.org/news/2023/08/an-introduction-to-block-variations/\"> </a><strong><a href=\"https://developer.wordpress.org/news/2023/08/an-introduction-to-block-variations/\">introduction to block variations</a>,</strong> and you will learn how to create block variations effectively and discover ways to incorporate them into your workflows. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Roof of the Stefan&#8217;s Cathedral in Vienna 2023 &#8211; Photo by Birgit Pauli-Haack</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 Sep 2023 10:16:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"BuddyPress: BP Attachments 1.1.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=331082\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://buddypress.org/2023/09/bp-attachments-1-1-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3399:\"<p>Immediately available is <a href=\"https://downloads.wordpress.org/plugin/bp-attachments.1.1.0.zip\" target=\"_blank\" rel=\"noreferrer noopener\">BP Attachments 1.1.0</a>. This BuddyPress Add-on maintenance release main goal is to make it <strong>ready for the next BuddyPress major release (12.0)</strong>. If you haven&#8217;t read about the important change BuddyPress 12.0.0 will introduce, please read this post about its <a href=\"https://buddypress.org/2023/08/buddypress-12-0-0-beta1/\">first beta version</a>.</p>\n\n\n\n<span id=\"more-331082\"></span>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Showing the way to BuddyPress third party Plugins/Add-ons</h2>\n\n\n\n<p>The BP Attachments 1.1.0 maintenance release is the opportunity the BuddyPress development team chose to demonstrate how third party BuddyPress Plugins/Add-ons can adapt their code to be compatible with BuddyPress 12.0.0 as well as with previous versions of BuddyPress. It&#8217;s very important to us, as a community, we all take a few actions &#8211; during the next 2 months &#8211; to prepare the BuddyPress next major version release (slated to October 30).</p>\n\n\n\n<p>In addition to <a href=\"https://github.com/buddypress/buddypress/tree/master/docs/developer#buddypress-add-ons-handbook\" target=\"_blank\" rel=\"noreferrer noopener\">documentation resources</a> Third party BuddyPress Plugin/Add-on authors can read, they can now <a href=\"https://github.com/buddypress/bp-attachments/pulls?q=is%3Apr+is%3Aclosed+label%3Aresource+sort%3Acreated-asc\" target=\"_blank\" rel=\"noreferrer noopener\">learn from a real use case</a> thanks to this BP Attachments new maintenance release.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">The other changes</h2>\n\n\n\n<ul>\n<li>The experimental avatar UI is now disabled by default. If you want to experiment it, you&#8217;ll need to use this piece of code:<br /> <code>add_filter( \'bp_attachments_use_experimental_features\', \'__return_true\' );</code></li>\n\n\n\n<li>When enabled this experimental UI now includes a link to delete the existing avatar.</li>\n\n\n\n<li>If you&#8217;re not happy with how Media Attachments are rendered inside the Activity updates, you can use a filter to reorganize Activity blocks<strong>*</strong>. There&#8217;s an exemple of use <a rel=\"noreferrer noopener\" href=\"https://github.com/buddypress/bp-attachments/pull/82\" target=\"_blank\">here</a>.</li>\n</ul>\n\n\n\n<p><code><strong>*</strong></code> ICYMI: since BuddyPress 11.0.0, as you can opt-in to use Blocks inside BP Activity content using the filter below, BP Attachments is enjoying this feature and use it to attach Media to Activity updates.</p>\n\n\n\n<p><code>add_filter( \'bp_is_activity_blocks_active\', \'__return_true\' );</code></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Please upgrade to 1.1.0 !</h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/bp-attachments/\">BP Attachments</a></blockquote>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Sep 2023 11:34:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Do The Woo Community: A DevChat on WooCommerce Support with Andrew Wikel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=70794\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://dothewoo.io/a-devchat-on-woocommerce-support/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:408:\"<p>Andrew Wikel shares thoughts and insights working on WooCommerce support specifically for builders and developers of Woo shops. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-devchat-on-woocommerce-support/\">A DevChat on WooCommerce Support with Andrew Wikel</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Sep 2023 10:30:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WPTavern: Patchstack Reports 404 Vulnerabilities Affecting 1.6M+ Websites to WordPress.org Plugins Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://wptavern.com/patchstack-reports-404-vulnerabilities-affecting-1-6m-websites-to-wordpress-org-plugins-team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4214:\"<p>After an accumulation of undisclosed and unpatched vulnerabilities in plugins hosted on WordPress.org, Patchstack has reported 404 plugins to WordPress&#8217; Plugin Review Team. </p>\n\n\n\n<p>&#8220;This situation creates a significant risk for the WordPress community, and we decided to take action,&#8221; Patchstack researcher Darius Sveikauskas said. &#8220;Since these developers have been unreachable, we sent the full list of those 404 vulnerabilities to the plugins review team for processing.&#8221;</p>\n\n\n\n<p>Ordinarily, reporting plugins to WordPress.org is a last resort for challenging cases after Patchstack fails to find a way to contact the vendors. In this case, many of these plugin authors have included zero contact information in their extensions or are not responding to communication attempts. Patchstack has characterized it as a &#8220;<a href=\"https://patchstack.com/articles/the-wordpress-zombie-plugins-pandemic-affects-1-6-million-websites/\">zombie plugins pandemic</a>&#8221; due to the overwhelming number of abandoned plugins affecting more than 1.6 million sites.</p>\n\n\n\n<p>The WordPress.org Plugins Team has acted on the report by closing more than 70% of the plugins. In June, the team <a href=\"https://wptavern.com/wordpress-plugin-review-team-adds-6-new-sponsored-volunteers-opens-applications\">added six new sponsored volunteers</a> and opened applications for more team members but have <a href=\"https://wptavern.com/wordpress-plugin-review-team-addresses-backlog-of-900-plugins-implements-strategies-to-improve-approval-process\">struggled with managing a formidable backlog</a> of plugins waiting to be reviews. The <a href=\"https://wordpress.org/plugins/developers/add/\">backlog</a> is climbing higher and is now over 1,119 plugins with a 71-day wait time. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1776\" height=\"676\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-02-at-12.01.40-AM.png\" alt=\"\" class=\"wp-image-148469\" />\n\n\n\n<p>Adding plugin vulnerability issues, where hundreds have to be closed, only adds to how long developers have to wait to get new plugins reviewed.</p>\n\n\n\n<p>As of August 31, 2023, Patchstack reports the following stats associated with these reports to WordPress.org:</p>\n\n\n\n<ul>\n<li>404 vulnerabilities</li>\n\n\n\n<li>358 plugins affected</li>\n\n\n\n<li>289 plugins (71,53%) – Closed</li>\n\n\n\n<li>109 plugins (26,98%) – Patched</li>\n\n\n\n<li>6 plugins (1,49%) – Not closed / Not patched</li>\n\n\n\n<li>Up to 1.6 million active installs affected</li>\n\n\n\n<li>Average installs per plugin 4984</li>\n\n\n\n<li>Highest install count 100000 (two plugins)</li>\n\n\n\n<li>Highest CVSS 9.1</li>\n\n\n\n<li>Average CVSS 5.8</li>\n\n\n\n<li>“Oldest” plugin – 13 years since the last update</li>\n</ul>\n\n\n\n<p>Patchstack is urging developers to add their contact details to their plugins&#8217; <a rel=\"noreferrer noopener\" href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\" target=\"_blank\">readme.txt</a> and/or <a rel=\"noreferrer noopener\" href=\"https://docs.github.com/en/code-security/getting-started/adding-a-security-policy-to-your-repository\" target=\"_blank\">SECURITY.md</a> files. To streamline security issue management, the company has created the Patchstack <a rel=\"noreferrer noopener\" href=\"https://patchstack.com/for-plugins/\" target=\"_blank\">mVDP (managed vulnerability disclosure program)</a> project, which is free for developers to join. Patchstack validates the reports that come through, rewards the researchers, and passes them to the vendor to be addressed.</p>\n\n\n\n<p>The company is also <a href=\"https://core.trac.wordpress.org/ticket/30465\">advocating for a dashboard alert</a> when a plugin or theme is removed due to security reasons, as WordPress does not currently give the user this information. Their researchers will soon be submitting more reports that may result in closed extensions.</p>\n\n\n\n<p>&#8220;We are preparing more similar lists for the WordPress.org themes repository and repositories focused on premium products,&#8221; Sveikauskas said. &#8220;We are currently processing about extra 200+ similar vulnerabilities.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Sep 2023 04:31:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: Review Signal Publishes 2023 WordPress and WooCommerce Hosting Performance Benchmarks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148317\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/review-signal-publishes-2023-wordpress-and-woocommerce-hosting-performance-benchmarks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11176:\"<p>Kevin Ohashi from Review Signal&nbsp;has published his <a href=\"https://wphostingbenchmarks.com/\">2023 WordPress and WooCommerce hosting performance benchmarks</a>. This is his 10th round of capturing performance data from hosting companies that opt into the testing. Ohashi&#8217;s <a href=\"https://wphostingbenchmarks.com/methodology/\">methodology</a> tests two metrics through a variety of methods: peak performance and consistency. </p>\n\n\n\n<p>The benchmarks include a LoadStorm test designed to simulate real users visiting the site, logging in, and browsing (uncached performance). They also test cached performance, SSL, WP queries per second, performance on some computational and database operations, and a WebPageTest that fully loads the homepage and records how long it takes from 12 different locations around the world. As part of the consistency testing, Ohashi also measures uptime using <a rel=\"noreferrer noopener\" href=\"https://hetrixtools.com/uptime-monitor/166399.html\" target=\"_blank\">HetrixTools</a>&nbsp;and&nbsp;<a rel=\"noreferrer noopener\" href=\"https://uptimerobot.com/\" target=\"_blank\">Uptime Robot</a> for a minimum of three months.</p>\n\n\n\n<p>Participants pay a standard, publicly documented fee, based on the price tier of the product being tested, to cover the costs. Ohashi does not accept sponsorships for the tests, and has become one of the most trusted sources for unbiased performance reviews of WordPress hosting plans.</p>\n\n\n\n<p>In 2023, Ohashi tested 31 companies across 72 plans and seven pricing tiers, with tests nearly identical to previous years. He made minimal adjustments to the LoadStorm test script to improve performance and make it compatible with newer versions of k6.</p>\n\n\n\n<p>The website makes it easy to review results at a glance by using a star system. Hosts that achieve &#8220;Top Tier&#8221; status receive a full star:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>This is awarded to companies who maintain 99.9% uptime throughout the entire testing and show little to no performance degradation during load testing, primarily focused on error rate and consistent response times. Error rates above 0.1% and response times above 1000ms* will keep a company away from achieving Top Tier marks.</p>\n</blockquote>\n\n\n\n<p>The half star indicates &#8220;Honorable Mention&#8221; status, which is given to companies that came close to Top Tier but fell just short, such as struggling slightly on a load test.</p>\n\n\n\n<p>Among budget hosts in the <a href=\"https://wphostingbenchmarks.com/benchmark/2023-25-wordpress/\">&lt;$25/month category</a>, the majority of hosts (16/21) rang in at the Top Tier level. Those who did not earn Top Tier status were held back by inferior performance on the the LoadStorm test&nbsp;for the most part, even though several still took top scores in other aspects of the testing. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1222\" height=\"1194\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-01-at-11.58.44-AM.png\" alt=\"\" class=\"wp-image-148428\" />\n\n\n\n<p>There are fewer participants at the $25-50 plan (and other more expensive plans) but the results are similar to the budget hosts, with A2 Hosting, Cloudways, and Stromonic edged out of contention for Top Tier. All three failed to achieve Top Tier for any of the plans tested this year. </p>\n\n\n\n<p>In the <a href=\"https://wphostingbenchmarks.com/benchmark/2023-enterprise-wordpress/\">Enterprise tier ($500+)</a>, the majority of participants handled the LoadStorm test without issue. When testing cached performance, Ohashi found that the overall field of participants is getting faster: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Excluding Seravo, every company was 33ms average or below and 43ms p95 or below. Compared to last year where the fastest average was 6.4 ms and p95 was 20ms. There are four companies this year below both of those levels. The performance at the Enterprise tier is mind bogglingly fast and getting even faster which is hard to comprehend when last year&#8217;s 6.4ms was beaten by 4 plans this year.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2094\" height=\"1304\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-01-at-1.13.36-PM.png\" alt=\"\" class=\"wp-image-148433\" />\n\n\n\n<p>Most of the entrants in the <a href=\"https://wphostingbenchmarks.com/benchmark/2023-woocommerce/\">WooCommerce category</a> earned Top Tier status, with the exception of Blallo and Cloudways, both of which stumbled on the LoadStorm test. The hosting plans tested range from $25.95/month &#8211; $99/month. The WooCommerce-specific tests collect average response times, total requests, errors, and other metrics across four different profiles:</p>\n\n\n\n<ul>\n<li>Profile 1 (20%): Buyer – Homepage, add item to cart, go to cart, checkout (doesn’t submit order)</li>\n\n\n\n<li>Profile 2 (10%): Customer (existing) – Homepage, login, view orders, view account details</li>\n\n\n\n<li>Profile 3 (20%): Browser – Homepage, visit 5 random product pages</li>\n\n\n\n<li>Profile 4 (50%): Home – Homepage only</li>\n</ul>\n\n\n\n<p>A more detailed breakdown is available on the WooCommerce benchmarks results page.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2350\" height=\"1208\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/09/Screen-Shot-2023-09-01-at-2.56.46-PM.png\" alt=\"\" class=\"wp-image-148441\" />\n\n\n\n<p>It&#8217;s important to note that the tests do not clearly identify a winner or top performer. They also don&#8217;t take into account other aspects of the WordPress hosting experience, like reviews, support, and features. Ohashi tests the defaults for all of these plans, but if there are more optimization features that can be customized for sites (which are not clearly outlined in the initial setup) then those are also not taken into account. The methodology simply focuses on performance, so it&#8217;s just one factor of hosting, albeit a very important one.</p>\n\n\n\n<p>&#8220;As far as surprising results, I keep thinking &#8216;Are we nearing the point that we won&#8217;t see much improvement?&#8217; and each year the whole field gets faster and faster,&#8221; Ohashi said. &#8220;Even improving on sub 10ms times between years. For example, in the &lt;$25/month tier, in 2022 there were 3 companies with &lt;50ms average response time on the Static k6 test. This year there are 10. I also saw 100ms+ improvements from the other (slower) side bringing up the whole field a meaningful amount. Everyone is getting faster and faster.&#8221;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Why Are Some Managed WordPress Hosting Companies Missing?</h3>\n\n\n\n<p>There are many leading WordPress managed hosts that are notably absent from Ohashi&#8217;s benchmarks, whose inclusion would be helpful for a deeper understanding of market. I asked him about a handful of them and he reported that WP Engine, DreamHost, and Kinsta declined to participate this year, to name a few. GoDaddy took a year off but may be back next year.</p>\n\n\n\n<p>The major reasons for hosts not wanting to participate fall into a few categories, and bad performance is chief among them.</p>\n\n\n\n<p>&#8220;Some companies perform poorly or poorly relative to price and don&#8217;t want to participate anymore,&#8221; Ohashi said. &#8220;They usually talk about other &#8216;intangible&#8217; values that you can&#8217;t measure. I think good performance should be a default for every&nbsp;hosting company, and good companies shouldn&#8217;t be afraid of bad results &#8211; if they actually plan on improving their services. </p>\n\n\n\n<p>&#8220;But some would probably rather spend fortunes on marketing instead of better engineering, and bad results aren&#8217;t going to help their&nbsp;marketing. I personally love seeing companies who participate year after year despite mixed results. I respect the companies&nbsp;who consistently earn Top Tier are doing a great job. But there&#8217;s something special about companies willing to put themselves out there regardless of the results, because it&#8217;s a public and open commitment to improving.&#8221;</p>\n\n\n\n<p>Ohashi said that occasionally the timing doesn&#8217;t work out where a host is going through a major engineering overhaul during the testing and doesn&#8217;t want the platform benchmarked when they are about to release a new one. In this case some opt to skip a year. </p>\n\n\n\n<p>The costs of the benchmarking can also be prohibitive for some smaller hosting companies. Ohashi raised prices by $250 across all tiers this year (eg. $100-&gt;$350, $500-&gt;$750) to cover his costs. Although this doesn&#8217;t seem like much for a hosting company, they also have to pay for the servers for four months, and have the staff/resources available to work with Ohashi on organizing, executing, and debugging issues. 20i, Krystal Hosting, Nexcess, and Pressable agreed to sponsor upstart companies in the space for 2023.</p>\n\n\n\n<p>Another reason some hosts don&#8217;t participate is a lack of interest or value. They don&#8217;t see how they can use the benchmark results to their advantage.</p>\n\n\n\n<p>&#8220;Some companies don&#8217;t get as much value from the benchmarks as others,&#8221; Ohashi said. &#8220;Performance across the board has gone way up. It&#8217;s harder and harder to stand out. </p>\n\n\n\n<p>&#8220;I think some companies may view it as an instant validation and reason for customers to come busting down the doors. But there are a lot of great companies offering great performance. Earning Top Tier status means you&#8217;ve got a performant hosting platform. It&#8217;s great, and it can help validate some customer needs/desires in the decision making funnel, but it won&#8217;t magically generate tons of sales.&#8221;</p>\n\n\n\n<p>Ohashi said he has put together notes for hosting companies that earned Top Tier status to help them leverage more value this year from a marketing perspective, based on what he has seen some companies do with their results. Creating more value for participating companies is something he is actively working to improve upon.</p>\n\n\n\n<p>Although Review Signal had approximately 35,000 people visit in the past year, Ohashi doesn&#8217;t think the traffic captures the full value of the benchmarks very well. The people who dig into these metrics are those who have a large impact on where their WordPress clients host their websites.</p>\n\n\n\n<p>&#8220;The people who care about the benchmarks are seriously into WordPress / hosting / performance,&#8221; Ohashi said. &#8220;It&#8217;s a lot of agencies, developers, large website owners and hosting people. One way I&#8217;ve measured impact is by going to the major WordCamps (EU/Asia/US) and talking to people. The number of folks who are aware of the benchmarks there was surprisingly&nbsp;high to me. The people who are interested enough to spend time at WordCamps are the same folks interested in reading the benchmarks. It&#8217;s not the largest number of people who read them, but it is the largest impact people who read and value them.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Sep 2023 21:17:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Do The Woo Community: WooBits Hits the Air Waves, Again\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76231\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://dothewoo.io/woobits-hits-the-air-waves-again/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:341:\"<p>WooBits takes another twist and turn and introducing Global Community Friends.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woobits-hits-the-air-waves-again/\">WooBits Hits the Air Waves, Again</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Sep 2023 11:30:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Do The Woo Community: What Was Your Takeaway from WordCamp US?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=76204\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://dothewoo.io/what-was-your-takeaway-from-wordcamp-us/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:385:\"<p>For an upcoming show, tell us what your takeaway was from WordCamp US or why did you attend Contributor Day.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/what-was-your-takeaway-from-wordcamp-us/\">What Was Your Takeaway from WordCamp US?</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Aug 2023 14:11:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: Performant Translations Plugin Now Available on WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=148364\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/performant-translations-plugin-now-available-on-wordpress-org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2844:\"<p>After an in-depth performance analysis earlier this year revealed that <a href=\"https://wptavern.com/wordpress-performance-analysis-finds-translations-may-significantly-slow-down-sites\">translations can impact server response times</a>, WordPress contributors <a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">proposed</a> half a dozen technical solutions for consideration to improve performance for the ~56% of sites that use translations.</p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/performant-translations/\">Performant Translations</a>, a feature project by the core Performance Team, is now available as a plugin on WordPress.org. It incorporates some of the proposed solutions and speeds up translations by converting <code>.mo</code> files to <code>.php</code> files, allowing them to be parsed faster and stored in <a href=\"https://www.php.net/manual/en/book.opcache.php\">OPcache</a>.</p>\n\n\n\n<p>It supports multiple file formats (<code>.mo</code>, <code>.php</code>, and <code>.json</code>) and multiple text domains and locales loaded at the same time. Existing <code>.mo</code> files get converted to <code>.php</code> files which are then loaded by WordPress.  </p>\n\n\n\n<p>A chart included on the plugin&#8217;s details page shows a significant page load time reduction when using the plugin, as compared to sites with translations that don&#8217;t use the plugin. The plugin brings translations very close to the same page load times as English (non-translated) sites.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1658\" height=\"1200\" src=\"https://149611589.v2.pressablecdn.com/wp-content/uploads/2023/08/performant-translations.png\" alt=\"\" class=\"wp-image-148367\" />\n\n\n\n<p>&#8220;With enough testing and feedback, we hope to eventually merge this plugin into WordPress core,&#8221; Performance Team contributor Pascal Birchler said when announcing the plugin on X.</p>\n\n\n\n<p>&#8220;In the coming weeks and months we will share more testing instructions and continue to improve the plugin. This will be made available via Performance Lab, too.&#8221;</p>\n\n\n\n<p>Users who are testing the plugin can <a href=\"https://wordpress.org/support/plugin/performant-translations/#new-topic-0\">report issues on the support forum</a> or create an issue on the <a href=\"https://github.com/swissspidy/performant-translations\">GitHub repository</a>.</p>\n\n\n\n<p>Performant Translations is considered to be a beta testing plugin but can be tested and used in production at your own risk. It doesn&#8217;t require any changes to settings or configuration after installation. The plugin can be safely removed after testing, because it essentially cleans up after itself. All <code>.php</code> files it generates will be removed by the server once the plugin is deactivated and uninstalled. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Aug 2023 01:39:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sun, 17 Sep 2023 16:11:06 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Sun, 17 Sep 2023 16:00:28 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 8\";}}s:5:\"build\";s:14:\"20230620070633\";}','no'),(629,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1695010267','no'),(630,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1694967067','no'),(631,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1695010267','no'),(632,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/09/openverse-wins-the-2023-oeg-open-infrastructure-award/\'>Openverse Wins the 2023 OEG Open Infrastructure Award</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/09/the-month-in-wordpress-august-2023/\'>The Month in WordPress – August 2023</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://gutenbergtimes.com/block-art-and-attributes-gato-graphql-and-command-palette-weekend-edition-268/\'>Gutenberg Times: Block Art and Attributes, Gato GraphQL and Command Palette – Weekend Edition 268</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/developers-claim-damaged-trust-following-public-confrontations-with-wordpress-leadership\'>WPTavern: Developers Claim Damaged Trust Following Public Confrontations with WordPress Leadership</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/community-summit-recaps-multilingual-documentation-performant-translations/\'>Post Status: Community Summit Recaps, Multilingual Documentation, Performant Translations</a></li></ul></div>','no'),(908,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.5.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.5.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.5.3\";s:7:\"version\";s:5:\"6.5.3\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1717189640;s:15:\"version_checked\";s:5:\"6.5.3\";s:12:\"translations\";a:0:{}}','no'),(939,'_transient_timeout_elementor_remote_info_api_data_3.21.8','1717041345','no'),(940,'_transient_elementor_remote_info_api_data_3.21.8','a:4:{s:9:\"timestamp\";s:10:\"1716995350\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{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:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";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:5:\"6.5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(941,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1717189642;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:10:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{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:\"5.3.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.82\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.82.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2990457\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2990457\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{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:\"3.21.8\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.8.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3005087\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3005087\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:51:\"header-footer-elementor/header-footer-elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/header-footer-elementor\";s:4:\"slug\";s:23:\"header-footer-elementor\";s:6:\"plugin\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:11:\"new_version\";s:6:\"1.6.35\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/header-footer-elementor/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.35.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2813167\";s:3:\"svg\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2813167\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/header-footer-elementor/assets/banner-1544x500.jpg?rev=2813167\";s:2:\"1x\";s:78:\"https://ps.w.org/header-footer-elementor/assets/banner-772x250.jpg?rev=2813167\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:37:\"elementskit-lite/elementskit-lite.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/elementskit-lite\";s:4:\"slug\";s:16:\"elementskit-lite\";s:6:\"plugin\";s:37:\"elementskit-lite/elementskit-lite.php\";s:11:\"new_version\";s:5:\"3.1.4\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/elementskit-lite/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/elementskit-lite.3.1.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-256x256.gif?rev=2518175\";s:2:\"1x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-128x128.gif?rev=2518175\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/elementskit-lite/assets/banner-1544x500.png?rev=2118488\";s:2:\"1x\";s:71:\"https://ps.w.org/elementskit-lite/assets/banner-772x250.png?rev=2118488\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:49:\"w.org/plugins/essential-addons-for-elementor-lite\";s:4:\"slug\";s:35:\"essential-addons-for-elementor-lite\";s:6:\"plugin\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:11:\"new_version\";s:6:\"5.9.22\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/essential-addons-for-elementor-lite/\";s:7:\"package\";s:85:\"https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.5.9.22.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-256x256.png?rev=2598498\";s:2:\"1x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-128x128.png?rev=2598498\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-1544x500.gif?rev=3029978\";s:2:\"1x\";s:90:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-772x250.gif?rev=3029978\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{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.3.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:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:19:\"metform/metform.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/metform\";s:4:\"slug\";s:7:\"metform\";s:6:\"plugin\";s:19:\"metform/metform.php\";s:11:\"new_version\";s:5:\"3.8.8\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/metform/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/metform.3.8.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/metform/assets/icon-256x256.png?rev=2544152\";s:2:\"1x\";s:60:\"https://ps.w.org/metform/assets/icon-128x128.png?rev=2544152\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/metform/assets/banner-1544x500.png?rev=2544152\";s:2:\"1x\";s:62:\"https://ps.w.org/metform/assets/banner-772x250.png?rev=2544152\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:30:\"salon-booking-system/salon.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:34:\"w.org/plugins/salon-booking-system\";s:4:\"slug\";s:20:\"salon-booking-system\";s:6:\"plugin\";s:30:\"salon-booking-system/salon.php\";s:11:\"new_version\";s:3:\"9.9\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/salon-booking-system/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/salon-booking-system.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/salon-booking-system/assets/icon-256x256.png?rev=2652617\";s:2:\"1x\";s:73:\"https://ps.w.org/salon-booking-system/assets/icon-128x128.png?rev=2652617\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/salon-booking-system/assets/banner-1544x500.png?rev=3094399\";s:2:\"1x\";s:75:\"https://ps.w.org/salon-booking-system/assets/banner-772x250.png?rev=2652610\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.1\";}s:43:\"template-kit-import/template-kit-import.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/template-kit-import\";s:4:\"slug\";s:19:\"template-kit-import\";s:6:\"plugin\";s:43:\"template-kit-import/template-kit-import.php\";s:11:\"new_version\";s:6:\"1.0.15\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/template-kit-import/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/template-kit-import.1.0.15.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/template-kit-import/assets/icon-256x256.png?rev=2228216\";s:2:\"1x\";s:72:\"https://ps.w.org/template-kit-import/assets/icon-128x128.png?rev=2228216\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}}s:7:\"checked\";a:11:{s:19:\"akismet/akismet.php\";s:5:\"5.3.2\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.82\";s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";s:4:\"2.53\";s:23:\"elementor/elementor.php\";s:6:\"3.21.8\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:6:\"1.6.35\";s:37:\"elementskit-lite/elementskit-lite.php\";s:5:\"3.1.4\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:6:\"5.9.22\";s:9:\"hello.php\";s:5:\"1.7.2\";s:19:\"metform/metform.php\";s:5:\"3.8.8\";s:30:\"salon-booking-system/salon.php\";s:3:\"9.9\";s:43:\"template-kit-import/template-kit-import.php\";s:6:\"1.0.15\";}}','no'),(942,'_site_transient_timeout_theme_roots','1717104997','no'),(943,'_site_transient_theme_roots','a:4:{s:15:\"hello-elementor\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=1800 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,5,'_elementor_edit_mode','builder'),(4,5,'_elementor_template_type','kit'),(5,6,'_wp_attached_file','2023/06/pur-wellness-spa-wordpress-theme-2023-05-10-12-24-18-utc.zip'),(6,6,'_wp_attachment_context','upgrader'),(9,8,'envato_tk_manifest','a:7:{s:16:\"manifest_version\";s:6:\"1.0.20\";s:5:\"title\";s:7:\"Esseine\";s:12:\"page_builder\";s:9:\"elementor\";s:11:\"kit_version\";s:5:\"1.0.1\";s:9:\"templates\";a:17:{i:0;a:9:{s:4:\"name\";s:17:\"Global Kit Styles\";s:10:\"screenshot\";s:33:\"screenshots/global-kit-styles.jpg\";s:6:\"source\";s:21:\"templates/global.json\";s:11:\"preview_url\";s:19:\"https://kitpro.site\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:4:{s:13:\"template_type\";s:13:\"global-styles\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;s:31:\"additional_template_information\";a:1:{i:0;s:85:\"These are the global theme styles configured through the Elementor Theme Styles area.\";}}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:9;}}}i:1;a:9:{s:4:\"name\";s:4:\"Home\";s:10:\"screenshot\";s:20:\"screenshots/home.jpg\";s:6:\"source\";s:19:\"templates/home.json\";s:11:\"preview_url\";s:46:\"https://kitpro.site/esseine/template-kit/home/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-home\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:132;}}}i:2;a:9:{s:4:\"name\";s:4:\"Team\";s:10:\"screenshot\";s:20:\"screenshots/team.jpg\";s:6:\"source\";s:19:\"templates/team.json\";s:11:\"preview_url\";s:46:\"https://kitpro.site/esseine/template-kit/team/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:135;}}}i:3;a:9:{s:4:\"name\";s:8:\"About Us\";s:10:\"screenshot\";s:24:\"screenshots/about-us.jpg\";s:6:\"source\";s:23:\"templates/about-us.json\";s:11:\"preview_url\";s:50:\"https://kitpro.site/esseine/template-kit/about-us/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:119;}}}i:4;a:9:{s:4:\"name\";s:10:\"Contact Us\";s:10:\"screenshot\";s:26:\"screenshots/contact-us.jpg\";s:6:\"source\";s:25:\"templates/contact-us.json\";s:11:\"preview_url\";s:52:\"https://kitpro.site/esseine/template-kit/contact-us/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:32;}}}i:5;a:9:{s:4:\"name\";s:8:\"Services\";s:10:\"screenshot\";s:24:\"screenshots/services.jpg\";s:6:\"source\";s:23:\"templates/services.json\";s:11:\"preview_url\";s:50:\"https://kitpro.site/esseine/template-kit/services/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:113;}}}i:6;a:9:{s:4:\"name\";s:4:\"FAQs\";s:10:\"screenshot\";s:20:\"screenshots/faqs.jpg\";s:6:\"source\";s:19:\"templates/faqs.json\";s:11:\"preview_url\";s:46:\"https://kitpro.site/esseine/template-kit/faqs/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:54;}}}i:7;a:9:{s:4:\"name\";s:17:\"Treatment Package\";s:10:\"screenshot\";s:33:\"screenshots/treatment-package.jpg\";s:6:\"source\";s:32:\"templates/treatment-package.json\";s:11:\"preview_url\";s:59:\"https://kitpro.site/esseine/template-kit/treatment-package/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:124;}}}i:8;a:9:{s:4:\"name\";s:7:\"Pricing\";s:10:\"screenshot\";s:23:\"screenshots/pricing.jpg\";s:6:\"source\";s:22:\"templates/pricing.json\";s:11:\"preview_url\";s:49:\"https://kitpro.site/esseine/template-kit/pricing/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:100;}}}i:9;a:8:{s:4:\"name\";s:4:\"Blog\";s:10:\"screenshot\";s:20:\"screenshots/blog.jpg\";s:6:\"source\";s:19:\"templates/blog.json\";s:11:\"preview_url\";s:46:\"https://kitpro.site/esseine/template-kit/blog/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:10;a:9:{s:4:\"name\";s:7:\"Gallery\";s:10:\"screenshot\";s:23:\"screenshots/gallery.jpg\";s:6:\"source\";s:22:\"templates/gallery.json\";s:11:\"preview_url\";s:49:\"https://kitpro.site/esseine/template-kit/gallery/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:106;}}}i:11;a:9:{s:4:\"name\";s:3:\"404\";s:10:\"screenshot\";s:19:\"screenshots/404.jpg\";s:6:\"source\";s:18:\"templates/404.json\";s:11:\"preview_url\";s:45:\"https://kitpro.site/esseine/template-kit/404/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:79;}}}i:12;a:8:{s:4:\"name\";s:12:\"Contact Form\";s:10:\"screenshot\";s:28:\"screenshots/contact-form.jpg\";s:6:\"source\";s:27:\"templates/contact-form.json\";s:11:\"preview_url\";s:54:\"https://kitpro.site/esseine/template-kit/contact-form/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:13:\"section-other\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:13;a:9:{s:4:\"name\";s:15:\"Newsletter Form\";s:10:\"screenshot\";s:31:\"screenshots/newsletter-form.jpg\";s:6:\"source\";s:30:\"templates/newsletter-form.json\";s:11:\"preview_url\";s:57:\"https://kitpro.site/esseine/template-kit/newsletter-form/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:13:\"section-other\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:47;}}}i:14;a:8:{s:4:\"name\";s:12:\"Header White\";s:10:\"screenshot\";s:28:\"screenshots/header-white.jpg\";s:6:\"source\";s:27:\"templates/header-white.json\";s:11:\"preview_url\";s:54:\"https://kitpro.site/esseine/template-kit/header-white/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:14:\"section-header\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:15;a:8:{s:4:\"name\";s:17:\"Header Background\";s:10:\"screenshot\";s:33:\"screenshots/header-background.jpg\";s:6:\"source\";s:32:\"templates/header-background.json\";s:11:\"preview_url\";s:59:\"https://kitpro.site/esseine/template-kit/header-background/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:14:\"section-header\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:16;a:9:{s:4:\"name\";s:6:\"Footer\";s:10:\"screenshot\";s:22:\"screenshots/footer.jpg\";s:6:\"source\";s:21:\"templates/footer.json\";s:11:\"preview_url\";s:48:\"https://kitpro.site/esseine/template-kit/footer/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:14:\"section-footer\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:68;}}}}s:16:\"required_plugins\";a:4:{i:0;a:4:{s:4:\"name\";s:30:\"Essential Addons for Elementor\";s:7:\"version\";s:5:\"4.9.1\";s:4:\"file\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:6:\"author\";s:11:\"WPDeveloper\";}i:1;a:4:{s:4:\"name\";s:33:\"Elementor Header & Footer Builder\";s:7:\"version\";s:5:\"1.6.4\";s:4:\"file\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:6:\"author\";s:31:\"Brainstorm Force, Nikhil Chavan\";}i:2;a:4:{s:4:\"name\";s:7:\"MetForm\";s:7:\"version\";s:5:\"1.5.4\";s:4:\"file\";s:19:\"metform/metform.php\";s:6:\"author\";s:5:\"Wpmet\";}i:3;a:4:{s:4:\"name\";s:9:\"Elementor\";s:7:\"version\";s:5:\"3.4.4\";s:4:\"file\";s:23:\"elementor/elementor.php\";s:6:\"author\";s:13:\"Elementor.com\";}}s:6:\"images\";a:73:{i:0;a:8:{s:8:\"filename\";s:39:\"jasmine-flowers-white-1.1-Converted.png\";s:13:\"thumbnail_url\";s:111:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/jasmine-flowers-white-1.1-Converted-800x764.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}}s:8:\"filesize\";i:60263;s:10:\"dimensions\";a:2:{i:0;i:896;i:1;i:856;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:83:\"https://elements.envato.com/line-drawing-white-jasmine-flower-illustrations-FF57E82\";}i:1;a:8:{s:8:\"filename\";s:81:\"elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\";s:13:\"thumbnail_url\";s:145:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:61923;s:10:\"dimensions\";a:2:{i:0;i:674;i:1;i:620;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:83:\"https://elements.envato.com/line-drawing-white-jasmine-flower-illustrations-FF57E82\";}i:2;a:8:{s:8:\"filename\";s:62:\"portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\";s:13:\"thumbnail_url\";s:126:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}}s:8:\"filesize\";i:216807;s:10:\"dimensions\";a:2:{i:0;i:700;i:1;i:886;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-7ACXDQG\";}i:3;a:8:{s:8:\"filename\";s:64:\"portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\";s:13:\"thumbnail_url\";s:128:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}}s:8:\"filesize\";i:185744;s:10:\"dimensions\";a:2:{i:0;i:700;i:1;i:886;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-7ACXDQG\";}i:4;a:8:{s:8:\"filename\";s:33:\"spa-in-the-background-4BT6SD5.jpg\";s:13:\"thumbnail_url\";s:105:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/spa-in-the-background-4BT6SD5-800x534.jpg\";s:9:\"templates\";a:6:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:19:\"templates/faqs.json\";s:4:\"name\";s:4:\"FAQs\";}i:3;a:2:{s:6:\"source\";s:32:\"templates/treatment-package.json\";s:4:\"name\";s:17:\"Treatment Package\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:5;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}}s:8:\"filesize\";i:235168;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1281;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-4BT6SD5\";}i:5;a:8:{s:8:\"filename\";s:18:\"4607-Massage-1.png\";s:13:\"thumbnail_url\";s:82:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/4607-Massage-1.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}}s:8:\"filesize\";i:9653;s:10:\"dimensions\";a:2:{i:0;i:368;i:1;i:370;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/50-spa-line-green-black-icons-EGVMGU\";}i:6;a:8:{s:8:\"filename\";s:23:\"4606-Mask-on-Face-1.png\";s:13:\"thumbnail_url\";s:87:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/4606-Mask-on-Face-1.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}}s:8:\"filesize\";i:12354;s:10:\"dimensions\";a:2:{i:0;i:333;i:1;i:360;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/50-spa-line-green-black-icons-EGVMGU\";}i:7;a:8:{s:8:\"filename\";s:25:\"4625-Floating-Flowers.png\";s:13:\"thumbnail_url\";s:89:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/4625-Floating-Flowers.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:32:\"templates/treatment-package.json\";s:4:\"name\";s:17:\"Treatment Package\";}}s:8:\"filesize\";i:9156;s:10:\"dimensions\";a:2:{i:0;i:370;i:1;i:294;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/50-spa-line-green-black-icons-EGVMGU\";}i:8;a:8:{s:8:\"filename\";s:39:\"jasmine-flowers-white-1.2-Converted.png\";s:13:\"thumbnail_url\";s:103:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/jasmine-flowers-white-1.2-Converted.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/faqs.json\";s:4:\"name\";s:4:\"FAQs\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:39337;s:10:\"dimensions\";a:2:{i:0;i:437;i:1;i:700;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:83:\"https://elements.envato.com/line-drawing-white-jasmine-flower-illustrations-FF57E82\";}i:9;a:8:{s:8:\"filename\";s:36:\"spa-massage-in-spa-salon-SDSUDMU.jpg\";s:13:\"thumbnail_url\";s:108:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/spa-massage-in-spa-salon-SDSUDMU-800x533.jpg\";s:9:\"templates\";a:4:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:19:\"templates/faqs.json\";s:4:\"name\";s:4:\"FAQs\";}i:3;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}}s:8:\"filesize\";i:242034;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-SDSUDMU\";}i:10;a:8:{s:8:\"filename\";s:43:\"spa-settings-on-pink-background-PNTV8L5.jpg\";s:13:\"thumbnail_url\";s:115:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/spa-settings-on-pink-background-PNTV8L5-800x391.jpg\";s:9:\"templates\";a:10:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:3;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact Us\";}i:4;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:5;a:2:{s:6:\"source\";s:19:\"templates/faqs.json\";s:4:\"name\";s:4:\"FAQs\";}i:6;a:2:{s:6:\"source\";s:32:\"templates/treatment-package.json\";s:4:\"name\";s:17:\"Treatment Package\";}i:7;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:8;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}i:9;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:227631;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:938;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PNTV8L5\";}i:11;a:8:{s:8:\"filename\";s:62:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\";s:13:\"thumbnail_url\";s:126:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:37170;s:10:\"dimensions\";a:2:{i:0;i:600;i:1;i:600;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/50-spa-line-green-black-icons-EGVMGU\";}i:12;a:8:{s:8:\"filename\";s:62:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\";s:13:\"thumbnail_url\";s:126:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:53322;s:10:\"dimensions\";a:2:{i:0;i:600;i:1;i:600;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/50-spa-line-green-black-icons-EGVMGU\";}i:13;a:8:{s:8:\"filename\";s:60:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\";s:13:\"thumbnail_url\";s:124:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:48568;s:10:\"dimensions\";a:2:{i:0;i:600;i:1;i:600;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/50-spa-line-green-black-icons-EGVMGU\";}i:14;a:8:{s:8:\"filename\";s:57:\"woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\";s:13:\"thumbnail_url\";s:129:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-800x722.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:32:\"templates/treatment-package.json\";s:4:\"name\";s:17:\"Treatment Package\";}}s:8:\"filesize\";i:219640;s:10:\"dimensions\";a:2:{i:0;i:1000;i:1;i:902;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-M9ZAHJY\";}i:15;a:8:{s:8:\"filename\";s:59:\"woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1.png\";s:13:\"thumbnail_url\";s:131:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-800x722.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:32:\"templates/treatment-package.json\";s:4:\"name\";s:17:\"Treatment Package\";}}s:8:\"filesize\";i:185097;s:10:\"dimensions\";a:2:{i:0;i:1000;i:1;i:902;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-M9ZAHJY\";}i:16;a:8:{s:8:\"filename\";s:39:\"jasmine-flowers-white-4.1-Converted.png\";s:13:\"thumbnail_url\";s:103:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/jasmine-flowers-white-4.1-Converted.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:32:\"templates/treatment-package.json\";s:4:\"name\";s:17:\"Treatment Package\";}}s:8:\"filesize\";i:47292;s:10:\"dimensions\";a:2:{i:0;i:448;i:1;i:950;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:83:\"https://elements.envato.com/line-drawing-white-jasmine-flower-illustrations-FF57E82\";}i:17;a:8:{s:8:\"filename\";s:23:\"spa-setting-GTFJWQ4.jpg\";s:13:\"thumbnail_url\";s:95:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/spa-setting-GTFJWQ4-800x533.jpg\";s:9:\"templates\";a:4:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:235733;s:10:\"dimensions\";a:2:{i:0;i:1420;i:1;i:946;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-GTFJWQ4\";}i:18;a:8:{s:8:\"filename\";s:55:\"woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\";s:13:\"thumbnail_url\";s:127:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-800x533.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:140270;s:10:\"dimensions\";a:2:{i:0;i:1501;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PXUH8BP\";}i:19;a:8:{s:8:\"filename\";s:62:\"relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\";s:13:\"thumbnail_url\";s:134:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-800x533.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:78826;s:10:\"dimensions\";a:2:{i:0;i:1501;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-972WAYB\";}i:20;a:8:{s:8:\"filename\";s:62:\"happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\";s:13:\"thumbnail_url\";s:134:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-800x533.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:82055;s:10:\"dimensions\";a:2:{i:0;i:1501;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-MD2CY8D\";}i:21;a:8:{s:8:\"filename\";s:9:\"petik.png\";s:13:\"thumbnail_url\";s:73:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/petik.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:32:\"templates/treatment-package.json\";s:4:\"name\";s:17:\"Treatment Package\";}}s:8:\"filesize\";i:18273;s:10:\"dimensions\";a:2:{i:0;i:700;i:1;i:568;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:22;a:8:{s:8:\"filename\";s:26:\"beauty-sleep-7DRHLVJ-1.jpg\";s:13:\"thumbnail_url\";s:90:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/beauty-sleep-7DRHLVJ-1.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:32:\"templates/treatment-package.json\";s:4:\"name\";s:17:\"Treatment Package\";}}s:8:\"filesize\";i:61508;s:10:\"dimensions\";a:2:{i:0;i:500;i:1;i:500;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-7DRHLVJ\";}i:23;a:8:{s:8:\"filename\";s:64:\"happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\";s:13:\"thumbnail_url\";s:128:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:32:\"templates/treatment-package.json\";s:4:\"name\";s:17:\"Treatment Package\";}}s:8:\"filesize\";i:67529;s:10:\"dimensions\";a:2:{i:0;i:500;i:1;i:500;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-MD2CY8D\";}i:24;a:8:{s:8:\"filename\";s:59:\"face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\";s:13:\"thumbnail_url\";s:131:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-800x931.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}i:2;a:2:{s:6:\"source\";s:32:\"templates/treatment-package.json\";s:4:\"name\";s:17:\"Treatment Package\";}}s:8:\"filesize\";i:132153;s:10:\"dimensions\";a:2:{i:0;i:859;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-FNHBX4M\";}i:25;a:8:{s:8:\"filename\";s:34:\"relaxing-spa-procedure-YWFXDHM.jpg\";s:13:\"thumbnail_url\";s:106:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/relaxing-spa-procedure-YWFXDHM-800x931.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}i:2;a:2:{s:6:\"source\";s:32:\"templates/treatment-package.json\";s:4:\"name\";s:17:\"Treatment Package\";}}s:8:\"filesize\";i:166665;s:10:\"dimensions\";a:2:{i:0;i:859;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-YWFXDHM\";}i:26;a:8:{s:8:\"filename\";s:62:\"beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\";s:13:\"thumbnail_url\";s:134:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC-800x931.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}i:2;a:2:{s:6:\"source\";s:32:\"templates/treatment-package.json\";s:4:\"name\";s:17:\"Treatment Package\";}}s:8:\"filesize\";i:74951;s:10:\"dimensions\";a:2:{i:0;i:859;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-35YDXGC\";}i:27;a:8:{s:8:\"filename\";s:35:\"beauty-treatment-in-spa-8KRHVMY.jpg\";s:13:\"thumbnail_url\";s:107:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/beauty-treatment-in-spa-8KRHVMY-800x931.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}i:2;a:2:{s:6:\"source\";s:32:\"templates/treatment-package.json\";s:4:\"name\";s:17:\"Treatment Package\";}}s:8:\"filesize\";i:143158;s:10:\"dimensions\";a:2:{i:0;i:859;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-8KRHVMY\";}i:28;a:8:{s:8:\"filename\";s:42:\"beautiful-woman-at-spring-park-P4PZ4CT.jpg\";s:13:\"thumbnail_url\";s:114:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/beautiful-woman-at-spring-park-P4PZ4CT-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:242849;s:10:\"dimensions\";a:2:{i:0;i:1501;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-P4PZ4CT\";}i:29;a:8:{s:8:\"filename\";s:58:\"beautiful-female-receptionist-at-dental-clinic-2YCKZQV.jpg\";s:13:\"thumbnail_url\";s:130:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/beautiful-female-receptionist-at-dental-clinic-2YCKZQV-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:104817;s:10:\"dimensions\";a:2:{i:0;i:1501;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-2YCKZQV\";}i:30;a:8:{s:8:\"filename\";s:62:\"happy-young-african-american-smiling-woman-satisfi-DY6CFT2.jpg\";s:13:\"thumbnail_url\";s:134:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/happy-young-african-american-smiling-woman-satisfi-DY6CFT2-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:118121;s:10:\"dimensions\";a:2:{i:0;i:1501;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-DY6CFT2\";}i:31;a:8:{s:8:\"filename\";s:62:\"cheerful-female-cosmetologist-standing-against-whi-3VX78XN.jpg\";s:13:\"thumbnail_url\";s:134:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/cheerful-female-cosmetologist-standing-against-whi-3VX78XN-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:101445;s:10:\"dimensions\";a:2:{i:0;i:1501;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-3VX78XN\";}i:32;a:8:{s:8:\"filename\";s:41:\"elements-eye-logo-VXUKND-2018-11-20-1.png\";s:13:\"thumbnail_url\";s:105:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-eye-logo-VXUKND-2018-11-20-1.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:26400;s:10:\"dimensions\";a:2:{i:0;i:568;i:1;i:508;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:43:\"https://elements.envato.com/eye-logo-VXUKND\";}i:33;a:8:{s:8:\"filename\";s:59:\"elements-relax-resort-logo-template-GF6XU7-2019-02-17-1.png\";s:13:\"thumbnail_url\";s:123:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-relax-resort-logo-template-GF6XU7-2019-02-17-1.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:54366;s:10:\"dimensions\";a:2:{i:0;i:568;i:1;i:508;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:61:\"https://elements.envato.com/relax-resort-logo-template-GF6XU7\";}i:34;a:8:{s:8:\"filename\";s:49:\"elements-rose-flower-logo-Q83854-2017-10-29-1.png\";s:13:\"thumbnail_url\";s:113:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-rose-flower-logo-Q83854-2017-10-29-1.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:20639;s:10:\"dimensions\";a:2:{i:0;i:568;i:1;i:508;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:51:\"https://elements.envato.com/rose-flower-logo-Q83854\";}i:35;a:8:{s:8:\"filename\";s:56:\"elements-wellness-logo-template-XG9DU8Z-2020-12-11-2.png\";s:13:\"thumbnail_url\";s:120:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-wellness-logo-template-XG9DU8Z-2020-12-11-2.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:28619;s:10:\"dimensions\";a:2:{i:0;i:568;i:1;i:508;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:58:\"https://elements.envato.com/wellness-logo-template-XG9DU8Z\";}i:36;a:8:{s:8:\"filename\";s:26:\"jasmine-flowers-white2.png\";s:13:\"thumbnail_url\";s:90:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/jasmine-flowers-white2.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:39498;s:10:\"dimensions\";a:2:{i:0;i:437;i:1;i:418;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:83:\"https://elements.envato.com/line-drawing-white-jasmine-flower-illustrations-FF57E82\";}i:37;a:8:{s:8:\"filename\";s:62:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4.png\";s:13:\"thumbnail_url\";s:126:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:57002;s:10:\"dimensions\";a:2:{i:0;i:600;i:1;i:600;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/50-spa-line-green-black-icons-EGVMGU\";}i:38;a:8:{s:8:\"filename\";s:63:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11.png\";s:13:\"thumbnail_url\";s:127:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:52236;s:10:\"dimensions\";a:2:{i:0;i:600;i:1;i:600;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/50-spa-line-green-black-icons-EGVMGU\";}i:39;a:8:{s:8:\"filename\";s:62:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\";s:13:\"thumbnail_url\";s:126:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:32:\"templates/treatment-package.json\";s:4:\"name\";s:17:\"Treatment Package\";}}s:8:\"filesize\";i:30510;s:10:\"dimensions\";a:2:{i:0;i:600;i:1;i:600;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/50-spa-line-green-black-icons-EGVMGU\";}i:40;a:8:{s:8:\"filename\";s:62:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\";s:13:\"thumbnail_url\";s:126:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:32:\"templates/treatment-package.json\";s:4:\"name\";s:17:\"Treatment Package\";}}s:8:\"filesize\";i:64974;s:10:\"dimensions\";a:2:{i:0;i:600;i:1;i:600;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/50-spa-line-green-black-icons-EGVMGU\";}i:41;a:8:{s:8:\"filename\";s:63:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10.png\";s:13:\"thumbnail_url\";s:127:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:32427;s:10:\"dimensions\";a:2:{i:0;i:600;i:1;i:600;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/50-spa-line-green-black-icons-EGVMGU\";}i:42;a:8:{s:8:\"filename\";s:63:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12.png\";s:13:\"thumbnail_url\";s:127:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:45856;s:10:\"dimensions\";a:2:{i:0;i:600;i:1;i:600;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/50-spa-line-green-black-icons-EGVMGU\";}i:43;a:8:{s:8:\"filename\";s:15:\"Artboard-24.png\";s:13:\"thumbnail_url\";s:79:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/Artboard-24.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact Us\";}}s:8:\"filesize\";i:18453;s:10:\"dimensions\";a:2:{i:0;i:512;i:1;i:512;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/40-contact-us-icons-set-line-YULPXTY\";}i:44;a:8:{s:8:\"filename\";s:14:\"Artboard-8.png\";s:13:\"thumbnail_url\";s:78:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/Artboard-8.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact Us\";}}s:8:\"filesize\";i:21796;s:10:\"dimensions\";a:2:{i:0;i:512;i:1;i:512;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/40-contact-us-icons-set-line-YULPXTY\";}i:45;a:8:{s:8:\"filename\";s:15:\"Artboard-22.png\";s:13:\"thumbnail_url\";s:79:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/Artboard-22.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact Us\";}}s:8:\"filesize\";i:17448;s:10:\"dimensions\";a:2:{i:0;i:512;i:1;i:512;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/40-contact-us-icons-set-line-YULPXTY\";}i:46;a:8:{s:8:\"filename\";s:81:\"elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\";s:13:\"thumbnail_url\";s:145:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact Us\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/faqs.json\";s:4:\"name\";s:4:\"FAQs\";}i:2;a:2:{s:6:\"source\";s:18:\"templates/404.json\";s:4:\"name\";s:3:\"404\";}}s:8:\"filesize\";i:38198;s:10:\"dimensions\";a:2:{i:0;i:628;i:1;i:602;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:83:\"https://elements.envato.com/line-drawing-white-jasmine-flower-illustrations-FF57E82\";}i:47;a:8:{s:8:\"filename\";s:62:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\";s:13:\"thumbnail_url\";s:126:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:53940;s:10:\"dimensions\";a:2:{i:0;i:600;i:1;i:600;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/50-spa-line-green-black-icons-EGVMGU\";}i:48;a:8:{s:8:\"filename\";s:62:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\";s:13:\"thumbnail_url\";s:126:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:54241;s:10:\"dimensions\";a:2:{i:0;i:600;i:1;i:600;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/50-spa-line-green-black-icons-EGVMGU\";}i:49;a:8:{s:8:\"filename\";s:62:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\";s:13:\"thumbnail_url\";s:126:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:32235;s:10:\"dimensions\";a:2:{i:0;i:600;i:1;i:600;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:64:\"https://elements.envato.com/50-spa-line-green-black-icons-EGVMGU\";}i:50;a:8:{s:8:\"filename\";s:30:\"spring-spa-setting-PQSX3EK.png\";s:13:\"thumbnail_url\";s:94:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/spring-spa-setting-PQSX3EK.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:209317;s:10:\"dimensions\";a:2:{i:0;i:570;i:1;i:344;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PQSX3EK\";}i:51;a:8:{s:8:\"filename\";s:37:\"jasmine-flowers-white-1-Converted.png\";s:13:\"thumbnail_url\";s:109:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/jasmine-flowers-white-1-Converted-800x764.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:60404;s:10:\"dimensions\";a:2:{i:0;i:896;i:1;i:856;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:83:\"https://elements.envato.com/line-drawing-white-jasmine-flower-illustrations-FF57E82\";}i:52;a:8:{s:8:\"filename\";s:39:\"elements-eye-logo-VXUKND-2018-11-20.png\";s:13:\"thumbnail_url\";s:103:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-eye-logo-VXUKND-2018-11-20.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:26525;s:10:\"dimensions\";a:2:{i:0;i:568;i:1;i:508;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:43:\"https://elements.envato.com/eye-logo-VXUKND\";}i:53;a:8:{s:8:\"filename\";s:57:\"elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\";s:13:\"thumbnail_url\";s:121:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:62742;s:10:\"dimensions\";a:2:{i:0;i:568;i:1;i:508;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:61:\"https://elements.envato.com/relax-resort-logo-template-GF6XU7\";}i:54;a:8:{s:8:\"filename\";s:47:\"elements-rose-flower-logo-Q83854-2017-10-29.png\";s:13:\"thumbnail_url\";s:111:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-rose-flower-logo-Q83854-2017-10-29.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:24202;s:10:\"dimensions\";a:2:{i:0;i:568;i:1;i:508;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:51:\"https://elements.envato.com/rose-flower-logo-Q83854\";}i:55;a:8:{s:8:\"filename\";s:54:\"elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\";s:13:\"thumbnail_url\";s:118:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:100555;s:10:\"dimensions\";a:2:{i:0;i:568;i:1;i:508;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:58:\"https://elements.envato.com/wellness-logo-template-XG9DU8Z\";}i:56;a:8:{s:8:\"filename\";s:61:\"face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\";s:13:\"thumbnail_url\";s:125:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:105868;s:10:\"dimensions\";a:2:{i:0;i:800;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-FNHBX4M\";}i:57;a:8:{s:8:\"filename\";s:56:\"afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\";s:13:\"thumbnail_url\";s:120:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:114145;s:10:\"dimensions\";a:2:{i:0;i:800;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-8K5XAQM\";}i:58;a:8:{s:8:\"filename\";s:59:\"beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\";s:13:\"thumbnail_url\";s:123:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:98294;s:10:\"dimensions\";a:2:{i:0;i:800;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PA3ZZD3\";}i:59;a:8:{s:8:\"filename\";s:62:\"massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\";s:13:\"thumbnail_url\";s:126:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:77625;s:10:\"dimensions\";a:2:{i:0;i:800;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-XFTM49X\";}i:60;a:8:{s:8:\"filename\";s:43:\"beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\";s:13:\"thumbnail_url\";s:107:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:84203;s:10:\"dimensions\";a:2:{i:0;i:800;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PGVT9EK\";}i:61;a:8:{s:8:\"filename\";s:30:\"spring-spa-setting-PQSX3EK.jpg\";s:13:\"thumbnail_url\";s:94:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/spring-spa-setting-PQSX3EK.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:118440;s:10:\"dimensions\";a:2:{i:0;i:800;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PQSX3EK\";}i:62;a:8:{s:8:\"filename\";s:57:\"beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\";s:13:\"thumbnail_url\";s:129:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-800x534.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:142978;s:10:\"dimensions\";a:2:{i:0;i:1420;i:1;i:948;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PA3ZZD3\";}i:63;a:8:{s:8:\"filename\";s:37:\"jasmine-flowers-white-2-Converted.png\";s:13:\"thumbnail_url\";s:101:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/jasmine-flowers-white-2-Converted.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:68610;s:10:\"dimensions\";a:2:{i:0;i:691;i:1;i:917;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:83:\"https://elements.envato.com/line-drawing-white-jasmine-flower-illustrations-FF57E82\";}i:64;a:8:{s:8:\"filename\";s:15:\"spa-Y2EBL9H.jpg\";s:13:\"thumbnail_url\";s:79:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/spa-Y2EBL9H.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:78446;s:10:\"dimensions\";a:2:{i:0;i:666;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-Y2EBL9H\";}i:65;a:8:{s:8:\"filename\";s:62:\"two-young-woman-applying-moisturizing-cream-each-o-R9WC5FN.jpg\";s:13:\"thumbnail_url\";s:126:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/two-young-woman-applying-moisturizing-cream-each-o-R9WC5FN.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:113083;s:10:\"dimensions\";a:2:{i:0;i:666;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-R9WC5FN\";}i:66;a:8:{s:8:\"filename\";s:48:\"beautiful-young-woman-at-a-spa-salon-PCXQB3L.jpg\";s:13:\"thumbnail_url\";s:112:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/beautiful-young-woman-at-a-spa-salon-PCXQB3L.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:122432;s:10:\"dimensions\";a:2:{i:0;i:666;i:1;i:1000;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PCXQB3L\";}i:67;a:8:{s:8:\"filename\";s:45:\"beautiful-girl-in-the-spa-hotel-PGVT9EK-1.jpg\";s:13:\"thumbnail_url\";s:117:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/beautiful-girl-in-the-spa-hotel-PGVT9EK-1-800x534.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/gallery.json\";s:4:\"name\";s:7:\"Gallery\";}}s:8:\"filesize\";i:142627;s:10:\"dimensions\";a:2:{i:0;i:1420;i:1;i:947;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PGVT9EK\";}i:68;a:8:{s:8:\"filename\";s:28:\"jasmine-flowers-white-23.png\";s:13:\"thumbnail_url\";s:92:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/jasmine-flowers-white-23.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:18:\"templates/404.json\";s:4:\"name\";s:3:\"404\";}}s:8:\"filesize\";i:33075;s:10:\"dimensions\";a:2:{i:0;i:618;i:1;i:339;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:83:\"https://elements.envato.com/line-drawing-white-jasmine-flower-illustrations-FF57E82\";}i:69;a:8:{s:8:\"filename\";s:25:\"jasmine-branch-white1.png\";s:13:\"thumbnail_url\";s:97:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/jasmine-branch-white1-800x554.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:18:\"templates/404.json\";s:4:\"name\";s:3:\"404\";}}s:8:\"filesize\";i:25165;s:10:\"dimensions\";a:2:{i:0;i:855;i:1;i:592;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:83:\"https://elements.envato.com/line-drawing-white-jasmine-flower-illustrations-FF57E82\";}i:70;a:8:{s:8:\"filename\";s:39:\"jasmine-flowers-white-3.1-Converted.png\";s:13:\"thumbnail_url\";s:111:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/jasmine-flowers-white-3.1-Converted-800x784.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:18:\"templates/404.json\";s:4:\"name\";s:3:\"404\";}}s:8:\"filesize\";i:71859;s:10:\"dimensions\";a:2:{i:0;i:970;i:1;i:950;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:83:\"https://elements.envato.com/line-drawing-white-jasmine-flower-illustrations-FF57E82\";}i:71;a:8:{s:8:\"filename\";s:16:\"Logo-Esseine.png\";s:13:\"thumbnail_url\";s:88:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/Logo-Esseine-800x283.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:27:\"templates/header-white.json\";s:4:\"name\";s:12:\"Header White\";}}s:8:\"filesize\";i:22785;s:10:\"dimensions\";a:2:{i:0;i:985;i:1;i:348;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}i:72;a:8:{s:8:\"filename\";s:22:\"Logo-Esseine-White.png\";s:13:\"thumbnail_url\";s:94:\"https://kitpro.site/esseine/wp-content/uploads/sites/39/2021/09/Logo-Esseine-White-800x283.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:32:\"templates/header-background.json\";s:4:\"name\";s:17:\"Header Background\";}i:1;a:2:{s:6:\"source\";s:21:\"templates/footer.json\";s:4:\"name\";s:6:\"Footer\";}}s:8:\"filesize\";i:17999;s:10:\"dimensions\";a:2:{i:0;i:985;i:1;i:348;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:0:\"\";}}}'),(10,8,'envato_tk_folder_name','defb5b9aae28a3c3c663dea491290f7a'),(11,8,'envato_tk_builder','elementor'),(12,8,'envato_tk_source_zip_url','https://noha.in8.cdn-alpha.com/wp-content/uploads/template-kits/defb5b9aae28a3c3c663dea491290f7a/source-8.zip'),(13,9,'_elementor_edit_mode','builder'),(14,9,'_elementor_template_type','kit'),(15,9,'_elementor_version','3.14.0'),(16,10,'_elementor_edit_mode','builder'),(17,10,'_elementor_template_type','section'),(18,10,'_elementor_version','3.14.0'),(19,9,'_wp_page_template','default'),(20,9,'_elementor_page_settings','a:79:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#5E0826\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#D59999\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#FFF0F3\";}}s:13:\"custom_colors\";a:5:{i:0;a:3:{s:3:\"_id\";s:7:\"30e5369\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1;a:3:{s:3:\"_id\";s:7:\"b82d03e\";s:5:\"title\";s:10:\"WhiteTrans\";s:5:\"color\";s:9:\"#FFFFFF82\";}i:2;a:3:{s:5:\"title\";s:11:\"transparant\";s:3:\"_id\";s:7:\"cfd96a7\";s:5:\"color\";s:9:\"#02010100\";}i:3;a:3:{s:3:\"_id\";s:7:\"158c32f\";s:5:\"title\";s:10:\"transpink1\";s:5:\"color\";s:9:\"#D5999940\";}i:4;a:3:{s:3:\"_id\";s:7:\"233c4a0\";s:5:\"title\";s:10:\"transpink2\";s:5:\"color\";s:9:\"#D599999E\";}}s:17:\"system_typography\";a:4:{i:0;a:8:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:2:\"H1\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:2:\"H2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.2000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:2;a:7:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Sarabun\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}}i:3;a:8:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:2:\"H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2549999999999999;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:9:{i:0;a:6:{s:3:\"_id\";s:7:\"d6ab604\";s:5:\"title\";s:2:\"H4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";}i:1;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"8a8bed2\";s:5:\"title\";s:2:\"H5\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:3:\"_id\";s:7:\"c3b6dfb\";s:5:\"title\";s:2:\"H6\";}i:3;a:6:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.7000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:3:\"_id\";s:7:\"ba88d83\";s:5:\"title\";s:6:\"Number\";}i:4;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"aa5b00b\";s:5:\"title\";s:6:\"price2\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.3999999999999999;s:5:\"sizes\";a:0:{}}}i:5;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"897f75f\";s:5:\"title\";s:2:\"cr\";}i:6;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"1473676\";s:5:\"title\";s:5:\"about\";}i:7;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Sarabun\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"4bccb1c\";s:5:\"title\";s:4:\"Team\";}i:8;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:10;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:10;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:8.5999999999999996;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"46a8498\";s:5:\"title\";s:4:\"4040\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:11:\"__globals__\";a:21:{s:8:\"h1_color\";s:0:\"\";s:24:\"h1_typography_typography\";s:0:\"\";s:8:\"h2_color\";s:0:\"\";s:24:\"h2_typography_typography\";s:0:\"\";s:8:\"h3_color\";s:0:\"\";s:24:\"h3_typography_typography\";s:0:\"\";s:8:\"h4_color\";s:0:\"\";s:24:\"h4_typography_typography\";s:0:\"\";s:28:\"button_typography_typography\";s:26:\"globals/typography?id=text\";s:17:\"button_text_color\";s:25:\"globals/colors?id=30e5369\";s:23:\"button_background_color\";s:27:\"globals/colors?id=secondary\";s:19:\"button_border_color\";s:27:\"globals/colors?id=secondary\";s:23:\"button_hover_text_color\";s:27:\"globals/colors?id=secondary\";s:29:\"button_hover_background_color\";s:25:\"globals/colors?id=cfd96a7\";s:25:\"button_hover_border_color\";s:27:\"globals/colors?id=secondary\";s:26:\"body_typography_typography\";s:0:\"\";s:10:\"body_color\";s:0:\"\";s:8:\"h5_color\";s:0:\"\";s:24:\"h5_typography_typography\";s:0:\"\";s:24:\"h6_typography_typography\";s:0:\"\";s:8:\"h6_color\";s:0:\"\";}s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"25\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"25\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:1;}s:26:\"button_hover_border_border\";s:5:\"solid\";s:25:\"button_hover_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:26:\"button_hover_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"25\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"25\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:1;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:10:\"body_color\";s:7:\"#7A7A7A\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Sarabun\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:8:\"h1_color\";s:7:\"#5E0826\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:9:\"Marcellus\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"500\";s:8:\"h2_color\";s:7:\"#5E0826\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:9:\"Marcellus\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.2000000000000002;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"500\";s:8:\"h3_color\";s:7:\"#5E0826\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:9:\"Marcellus\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"500\";s:8:\"h4_color\";s:7:\"#5E0826\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:9:\"Marcellus\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"500\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:8:\"h5_color\";s:7:\"#5E0826\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:9:\"Marcellus\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"500\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#5E0826\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:9:\"Marcellus\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"500\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:7:\"Sarabun\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"400\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#D59999\";s:19:\"button_border_color\";s:7:\"#D59999\";s:23:\"button_hover_text_color\";s:7:\"#D59999\";s:29:\"button_hover_background_color\";s:9:\"#02010100\";s:25:\"button_hover_border_color\";s:7:\"#D59999\";s:32:\"body_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2549999999999999;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:9:\"site_name\";s:26:\"At Home Noha International\";s:9:\"site_logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:12:\"site_favicon\";a:5:{s:3:\"url\";s:85:\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-Icon.png\";s:2:\"id\";i:165;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}}'),(21,9,'_elementor_data','[]'),(22,11,'_elementor_edit_mode','builder'),(23,11,'_elementor_template_type','section'),(24,11,'_elementor_version','3.14.0'),(25,11,'_wp_page_template','default'),(26,11,'_elementor_page_settings','a:76:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#5E0826\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#D59999\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#FFF0F3\";}}s:13:\"custom_colors\";a:5:{i:0;a:3:{s:3:\"_id\";s:7:\"30e5369\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1;a:3:{s:3:\"_id\";s:7:\"b82d03e\";s:5:\"title\";s:10:\"WhiteTrans\";s:5:\"color\";s:9:\"#FFFFFF82\";}i:2;a:3:{s:5:\"title\";s:11:\"transparant\";s:3:\"_id\";s:7:\"cfd96a7\";s:5:\"color\";s:9:\"#02010100\";}i:3;a:3:{s:3:\"_id\";s:7:\"158c32f\";s:5:\"title\";s:10:\"transpink1\";s:5:\"color\";s:9:\"#D5999940\";}i:4;a:3:{s:3:\"_id\";s:7:\"233c4a0\";s:5:\"title\";s:10:\"transpink2\";s:5:\"color\";s:9:\"#D599999E\";}}s:17:\"system_typography\";a:4:{i:0;a:8:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:2:\"H1\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:2:\"H2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.2000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:2;a:7:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Sarabun\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}}i:3;a:8:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:2:\"H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2549999999999999;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:9:{i:0;a:6:{s:3:\"_id\";s:7:\"d6ab604\";s:5:\"title\";s:2:\"H4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";}i:1;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"8a8bed2\";s:5:\"title\";s:2:\"H5\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:3:\"_id\";s:7:\"c3b6dfb\";s:5:\"title\";s:2:\"H6\";}i:3;a:6:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.7000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:3:\"_id\";s:7:\"ba88d83\";s:5:\"title\";s:6:\"Number\";}i:4;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"aa5b00b\";s:5:\"title\";s:6:\"price2\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.3999999999999999;s:5:\"sizes\";a:0:{}}}i:5;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"897f75f\";s:5:\"title\";s:2:\"cr\";}i:6;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"1473676\";s:5:\"title\";s:5:\"about\";}i:7;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Sarabun\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"4bccb1c\";s:5:\"title\";s:4:\"Team\";}i:8;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:10;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:10;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:8.5999999999999996;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"46a8498\";s:5:\"title\";s:4:\"4040\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:11:\"__globals__\";a:21:{s:8:\"h1_color\";s:0:\"\";s:24:\"h1_typography_typography\";s:0:\"\";s:8:\"h2_color\";s:0:\"\";s:24:\"h2_typography_typography\";s:0:\"\";s:8:\"h3_color\";s:0:\"\";s:24:\"h3_typography_typography\";s:0:\"\";s:8:\"h4_color\";s:0:\"\";s:24:\"h4_typography_typography\";s:0:\"\";s:28:\"button_typography_typography\";s:26:\"globals/typography?id=text\";s:17:\"button_text_color\";s:25:\"globals/colors?id=30e5369\";s:23:\"button_background_color\";s:27:\"globals/colors?id=secondary\";s:19:\"button_border_color\";s:27:\"globals/colors?id=secondary\";s:23:\"button_hover_text_color\";s:27:\"globals/colors?id=secondary\";s:29:\"button_hover_background_color\";s:25:\"globals/colors?id=cfd96a7\";s:25:\"button_hover_border_color\";s:27:\"globals/colors?id=secondary\";s:26:\"body_typography_typography\";s:0:\"\";s:10:\"body_color\";s:0:\"\";s:8:\"h5_color\";s:0:\"\";s:24:\"h5_typography_typography\";s:0:\"\";s:24:\"h6_typography_typography\";s:0:\"\";s:8:\"h6_color\";s:0:\"\";}s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"25\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"25\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:1;}s:26:\"button_hover_border_border\";s:5:\"solid\";s:25:\"button_hover_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:26:\"button_hover_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"25\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"25\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:1;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:10:\"body_color\";s:7:\"#7A7A7A\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Sarabun\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:8:\"h1_color\";s:7:\"#5E0826\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:9:\"Marcellus\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"500\";s:8:\"h2_color\";s:7:\"#5E0826\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:9:\"Marcellus\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.2000000000000002;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"500\";s:8:\"h3_color\";s:7:\"#5E0826\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:9:\"Marcellus\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"500\";s:8:\"h4_color\";s:7:\"#5E0826\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:9:\"Marcellus\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"500\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:8:\"h5_color\";s:7:\"#5E0826\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:9:\"Marcellus\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"500\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#5E0826\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:9:\"Marcellus\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"500\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:7:\"Sarabun\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"400\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#D59999\";s:19:\"button_border_color\";s:7:\"#D59999\";s:23:\"button_hover_text_color\";s:7:\"#D59999\";s:29:\"button_hover_background_color\";s:9:\"#02010100\";s:25:\"button_hover_border_color\";s:7:\"#D59999\";s:32:\"body_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2549999999999999;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}}'),(27,11,'_elementor_data','[]'),(28,9,'_elementor_page_assets','a:0:{}'),(29,9,'_eael_custom_js',''),(30,9,'envato_tk_source_kit','8'),(31,9,'envato_tk_source_index','0'),(32,12,'_elementor_edit_mode','builder'),(33,12,'_elementor_template_type','kit'),(34,12,'_elementor_version','3.14.0'),(35,12,'_wp_page_template','default'),(36,12,'_elementor_page_settings','a:76:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#5E0826\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#D59999\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#FFF0F3\";}}s:13:\"custom_colors\";a:5:{i:0;a:3:{s:3:\"_id\";s:7:\"30e5369\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1;a:3:{s:3:\"_id\";s:7:\"b82d03e\";s:5:\"title\";s:10:\"WhiteTrans\";s:5:\"color\";s:9:\"#FFFFFF82\";}i:2;a:3:{s:5:\"title\";s:11:\"transparant\";s:3:\"_id\";s:7:\"cfd96a7\";s:5:\"color\";s:9:\"#02010100\";}i:3;a:3:{s:3:\"_id\";s:7:\"158c32f\";s:5:\"title\";s:10:\"transpink1\";s:5:\"color\";s:9:\"#D5999940\";}i:4;a:3:{s:3:\"_id\";s:7:\"233c4a0\";s:5:\"title\";s:10:\"transpink2\";s:5:\"color\";s:9:\"#D599999E\";}}s:17:\"system_typography\";a:4:{i:0;a:8:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:2:\"H1\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:2:\"H2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.2000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:2;a:7:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Sarabun\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}}i:3;a:8:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:2:\"H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2549999999999999;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:9:{i:0;a:6:{s:3:\"_id\";s:7:\"d6ab604\";s:5:\"title\";s:2:\"H4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";}i:1;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"8a8bed2\";s:5:\"title\";s:2:\"H5\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:3:\"_id\";s:7:\"c3b6dfb\";s:5:\"title\";s:2:\"H6\";}i:3;a:6:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.7000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:3:\"_id\";s:7:\"ba88d83\";s:5:\"title\";s:6:\"Number\";}i:4;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"aa5b00b\";s:5:\"title\";s:6:\"price2\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.3999999999999999;s:5:\"sizes\";a:0:{}}}i:5;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"897f75f\";s:5:\"title\";s:2:\"cr\";}i:6;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"1473676\";s:5:\"title\";s:5:\"about\";}i:7;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Sarabun\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"4bccb1c\";s:5:\"title\";s:4:\"Team\";}i:8;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:10;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:10;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:8.5999999999999996;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"46a8498\";s:5:\"title\";s:4:\"4040\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:11:\"__globals__\";a:21:{s:8:\"h1_color\";s:0:\"\";s:24:\"h1_typography_typography\";s:0:\"\";s:8:\"h2_color\";s:0:\"\";s:24:\"h2_typography_typography\";s:0:\"\";s:8:\"h3_color\";s:0:\"\";s:24:\"h3_typography_typography\";s:0:\"\";s:8:\"h4_color\";s:0:\"\";s:24:\"h4_typography_typography\";s:0:\"\";s:28:\"button_typography_typography\";s:26:\"globals/typography?id=text\";s:17:\"button_text_color\";s:25:\"globals/colors?id=30e5369\";s:23:\"button_background_color\";s:27:\"globals/colors?id=secondary\";s:19:\"button_border_color\";s:27:\"globals/colors?id=secondary\";s:23:\"button_hover_text_color\";s:27:\"globals/colors?id=secondary\";s:29:\"button_hover_background_color\";s:25:\"globals/colors?id=cfd96a7\";s:25:\"button_hover_border_color\";s:27:\"globals/colors?id=secondary\";s:26:\"body_typography_typography\";s:0:\"\";s:10:\"body_color\";s:0:\"\";s:8:\"h5_color\";s:0:\"\";s:24:\"h5_typography_typography\";s:0:\"\";s:24:\"h6_typography_typography\";s:0:\"\";s:8:\"h6_color\";s:0:\"\";}s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"25\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"25\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:1;}s:26:\"button_hover_border_border\";s:5:\"solid\";s:25:\"button_hover_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:26:\"button_hover_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"25\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"25\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:1;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:10:\"body_color\";s:7:\"#7A7A7A\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Sarabun\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:8:\"h1_color\";s:7:\"#5E0826\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:9:\"Marcellus\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"500\";s:8:\"h2_color\";s:7:\"#5E0826\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:9:\"Marcellus\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.2000000000000002;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"500\";s:8:\"h3_color\";s:7:\"#5E0826\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:9:\"Marcellus\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"500\";s:8:\"h4_color\";s:7:\"#5E0826\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:9:\"Marcellus\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"500\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:8:\"h5_color\";s:7:\"#5E0826\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:9:\"Marcellus\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"500\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#5E0826\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:9:\"Marcellus\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"500\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:7:\"Sarabun\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"400\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#D59999\";s:19:\"button_border_color\";s:7:\"#D59999\";s:23:\"button_hover_text_color\";s:7:\"#D59999\";s:29:\"button_hover_background_color\";s:9:\"#02010100\";s:25:\"button_hover_border_color\";s:7:\"#D59999\";s:32:\"body_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2549999999999999;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}}'),(37,12,'_elementor_data','[]'),(38,12,'_elementor_page_assets','a:0:{}'),(39,13,'_wp_attached_file','2023/06/jasmine-flowers-white-1.1-Converted.png'),(40,13,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:896;s:6:\"height\";i:856;s:4:\"file\";s:47:\"2023/06/jasmine-flowers-white-1.1-Converted.png\";s:8:\"filesize\";i:60263;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"jasmine-flowers-white-1.1-Converted-300x287.png\";s:5:\"width\";i:300;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20626;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"jasmine-flowers-white-1.1-Converted-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7480;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"jasmine-flowers-white-1.1-Converted-768x734.png\";s:5:\"width\";i:768;s:6:\"height\";i:734;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78496;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(41,13,'_elementor_source_image_hash','6c93cad7a94a257bb2aeec6f128fd5d8438161db'),(42,14,'_wp_attached_file','2023/06/spa-settings-on-pink-background-PNTV8L5.jpg'),(43,14,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:938;s:4:\"file\";s:51:\"2023/06/spa-settings-on-pink-background-PNTV8L5.jpg\";s:8:\"filesize\";i:227631;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"spa-settings-on-pink-background-PNTV8L5-300x147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33602;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"spa-settings-on-pink-background-PNTV8L5-1024x500.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92678;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"spa-settings-on-pink-background-PNTV8L5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29136;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"spa-settings-on-pink-background-PNTV8L5-768x375.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66390;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"spa-settings-on-pink-background-PNTV8L5-1536x750.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160691;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 5DS R\";s:7:\"caption\";s:187:\"Aromatherapy, beauty, spa background with towel, perfumed flowers water, tea pot, essencial oil and candles on pastel pink background, top view. Relaxation and zen like concept. Flat lay.\";s:17:\"created_timestamp\";s:10:\"1522866345\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:31:\"SPA settings on pink background\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:49:{i:0;s:5:\"above\";i:1;s:12:\"aromatherapy\";i:2;s:10:\"background\";i:3;s:8:\"bathroom\";i:4;s:9:\"beautiful\";i:5;s:6:\"beauty\";i:6;s:4:\"body\";i:7;s:4:\"bowl\";i:8;s:6:\"candle\";i:9;s:4:\"card\";i:10;s:5:\"clean\";i:11;s:5:\"color\";i:12;s:11:\"composition\";i:13;s:8:\"cosmetic\";i:14;s:7:\"essence\";i:15;s:9:\"essential\";i:16;s:7:\"extract\";i:17;s:7:\"fashion\";i:18;s:4:\"flat\";i:19;s:6:\"flower\";i:20;s:9:\"fragrance\";i:21;s:3:\"lay\";i:22;s:7:\"massage\";i:23;s:7:\"natural\";i:24;s:3:\"oil\";i:25;s:6:\"pastel\";i:26;s:6:\"pebble\";i:27;s:7:\"perfume\";i:28;s:5:\"petal\";i:29;s:4:\"pink\";i:30;s:5:\"relax\";i:31;s:5:\"salon\";i:32;s:7:\"setting\";i:33;s:8:\"skincare\";i:34;s:3:\"spa\";i:35;s:5:\"stone\";i:36;s:8:\"supplies\";i:37;s:5:\"table\";i:38;s:3:\"tea\";i:39;s:7:\"therapy\";i:40;s:3:\"top\";i:41;s:5:\"towel\";i:42;s:9:\"treatment\";i:43;s:4:\"view\";i:44;s:5:\"water\";i:45;s:8:\"wellness\";i:46;s:5:\"woman\";i:47;s:6:\"wooden\";i:48;s:3:\"zen\";}}}'),(44,14,'_elementor_source_image_hash','6f2d0d51737cb81089ed1e538e73ee55d14be210'),(45,15,'_wp_attached_file','2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png'),(46,15,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:674;s:6:\"height\";i:620;s:4:\"file\";s:89:\"2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\";s:8:\"filesize\";i:61923;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:89:\"elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png\";s:5:\"width\";i:300;s:6:\"height\";i:276;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30710;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:89:\"elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12772;}}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:{}}}'),(47,15,'_elementor_source_image_hash','1a30e43dd04c66a47d487338186c4c7d0748cee8'),(48,16,'_wp_attached_file','2023/06/Artboard-24.png'),(49,16,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:23:\"2023/06/Artboard-24.png\";s:8:\"filesize\";i:18453;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Artboard-24-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14946;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Artboard-24-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7007;}}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:{}}}'),(50,17,'_wp_attached_file','2023/06/spa-setting-GTFJWQ4.jpg'),(51,17,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1420;s:6:\"height\";i:946;s:4:\"file\";s:31:\"2023/06/spa-setting-GTFJWQ4.jpg\";s:8:\"filesize\";i:235733;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"spa-setting-GTFJWQ4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27681;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"spa-setting-GTFJWQ4-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140488;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"spa-setting-GTFJWQ4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20170;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"spa-setting-GTFJWQ4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86745;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:15:\"Lana Malamatidi\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:84:\"Pink Spa setting and health care items on white background. Space for text, flat lay\";s:17:\"created_timestamp\";s:10:\"1521612069\";s:9:\"copyright\";s:6:\"Lana_M\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:16:\"Pink Spa setting\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:33:{i:0;s:3:\"spa\";i:1;s:8:\"  health\";i:2;s:9:\"  healthy\";i:3;s:8:\"  spring\";i:4;s:8:\"  summer\";i:5;s:7:\"  aroma\";i:6;s:8:\"  candle\";i:7;s:14:\"  aromatherapy\";i:8;s:7:\"  towel\";i:9;s:6:\"  bath\";i:10;s:10:\"  bathroom\";i:11;s:8:\"  beauty\";i:12;s:6:\"  body\";i:13;s:8:\"  lotion\";i:14;s:6:\"  care\";i:15;s:10:\"  cosmetic\";i:16;s:8:\"  flower\";i:17;s:6:\"  rose\";i:18;s:6:\"  soap\";i:19;s:9:\"  hygiene\";i:20;s:9:\"  massage\";i:21;s:9:\"  natural\";i:22;s:5:\"  oil\";i:23;s:6:\"  pink\";i:24;s:7:\"  relax\";i:25;s:12:\"  relaxation\";i:26;s:8:\"  shower\";i:27;s:6:\"  skin\";i:28;s:9:\"  therapy\";i:29;s:11:\"  treatment\";i:30;s:7:\"  white\";i:31;s:6:\"  salt\";i:32;s:7:\"  asian\";}}}'),(52,16,'_elementor_source_image_hash','917e1034200ebf60c40d86386df936c037506cbe'),(53,17,'_elementor_source_image_hash','71c5ac837e7fc443b779fe540bb1953b8a4fe184'),(54,18,'_wp_attached_file','2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png'),(55,18,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:70:\"2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\";s:8:\"filesize\";i:53940;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20680;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9202;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56,18,'_elementor_source_image_hash','d22eba41c2fdb04a29fb3f54af4b5a484c40ec7c'),(57,19,'_wp_attached_file','2023/06/Artboard-8.png'),(58,19,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:22:\"2023/06/Artboard-8.png\";s:8:\"filesize\";i:21796;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Artboard-8-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18050;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Artboard-8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8200;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59,19,'_elementor_source_image_hash','ff73d18d149c4814a90a4464185cba99e8827f9d'),(60,20,'_wp_attached_file','2023/06/blob-3.png'),(61,20,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:159;s:4:\"file\";s:18:\"2023/06/blob-3.png\";s:8:\"filesize\";i:2200;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"blob-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2008;}}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:{}}}'),(62,20,'_elementor_source_image_hash','16c6cea9d8471cb77b161aaf8aabdc79610af436'),(63,21,'_wp_attached_file','2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png'),(64,21,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:886;s:4:\"file\";s:70:\"2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\";s:8:\"filesize\";i:216807;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72132;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26004;}}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:{}}}'),(65,21,'_elementor_source_image_hash','6c8d927dcbdfa924716e4c48f2ce7706457ca485'),(66,22,'_wp_attached_file','2023/06/spa-in-the-background-4BT6SD5.jpg'),(67,22,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:41:\"2023/06/spa-in-the-background-4BT6SD5.jpg\";s:8:\"filesize\";i:235168;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"spa-in-the-background-4BT6SD5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14887;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"spa-in-the-background-4BT6SD5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122217;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"spa-in-the-background-4BT6SD5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6575;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"spa-in-the-background-4BT6SD5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74129;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"spa-in-the-background-4BT6SD5-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:239089;}}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:{}}}'),(68,23,'_wp_attached_file','2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png'),(69,23,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:70:\"2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\";s:8:\"filesize\";i:37170;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15287;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6798;}}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:{}}}'),(70,23,'_elementor_source_image_hash','8006d19b3b80c01c3192109788680446911b99f8'),(71,22,'_elementor_source_image_hash','c5c45376e5423461d6a0fb75fc34b272804e4600'),(72,24,'_wp_attached_file','2023/06/Artboard-22.png'),(73,24,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:23:\"2023/06/Artboard-22.png\";s:8:\"filesize\";i:17448;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Artboard-22-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13966;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Artboard-22-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6685;}}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:{}}}'),(74,24,'_elementor_source_image_hash','ae56846fdf5414cb32f512072f30c2351e22aea6'),(75,25,'_wp_attached_file','2023/06/jasmine-flowers-white-1.2-Converted.png'),(76,25,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:437;s:6:\"height\";i:700;s:4:\"file\";s:47:\"2023/06/jasmine-flowers-white-1.2-Converted.png\";s:8:\"filesize\";i:39337;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"jasmine-flowers-white-1.2-Converted-187x300.png\";s:5:\"width\";i:187;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19078;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"jasmine-flowers-white-1.2-Converted-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10538;}}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:{}}}'),(77,25,'_elementor_source_image_hash','348d68e7b7ed342e70f6c8ef88c810ee6462d8df'),(78,26,'_wp_attached_file','2023/06/beautiful-woman-at-spring-park-P4PZ4CT.jpg'),(79,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1501;s:6:\"height\";i:1000;s:4:\"file\";s:50:\"2023/06/beautiful-woman-at-spring-park-P4PZ4CT.jpg\";s:8:\"filesize\";i:242849;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"beautiful-woman-at-spring-park-P4PZ4CT-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30699;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"beautiful-woman-at-spring-park-P4PZ4CT-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143964;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"beautiful-woman-at-spring-park-P4PZ4CT-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20846;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"beautiful-woman-at-spring-park-P4PZ4CT-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94529;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(80,26,'_elementor_source_image_hash','a24a4cb1124906b7ef9ae244e2d554b7f2be517c'),(81,27,'_wp_attached_file','2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png'),(82,27,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:886;s:4:\"file\";s:72:\"2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\";s:8:\"filesize\";i:185744;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73663;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26082;}}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:{}}}'),(83,27,'_elementor_source_image_hash','ac47fa0b9ef1da91773d8adc0e55a0fa90716105'),(84,28,'_wp_attached_file','2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png'),(85,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:70:\"2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\";s:8:\"filesize\";i:53322;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21985;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9300;}}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,28,'_elementor_source_image_hash','37f359d42c2b02f43c8b176d70ec585e0c05e7a4'),(87,29,'_wp_attached_file','2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png'),(88,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:70:\"2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\";s:8:\"filesize\";i:64974;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29911;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12415;}}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:{}}}'),(89,30,'_wp_attached_file','2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png'),(90,30,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:628;s:6:\"height\";i:602;s:4:\"file\";s:89:\"2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\";s:8:\"filesize\";i:38198;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:89:\"elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1-300x288.png\";s:5:\"width\";i:300;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25463;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:89:\"elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10306;}}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:{}}}'),(91,29,'_elementor_source_image_hash','e0aa499c7728909d997e92a7a444d8561534d837'),(92,31,'_wp_attached_file','2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg'),(93,31,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:44:\"2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg\";s:8:\"filesize\";i:242034;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"spa-massage-in-spa-salon-SDSUDMU-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34151;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108236;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"spa-massage-in-spa-salon-SDSUDMU-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26618;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"spa-massage-in-spa-salon-SDSUDMU-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76721;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184782;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D850\";s:7:\"caption\";s:66:\"Young beautiful woman getting spa massage on her back in spa salon\";s:17:\"created_timestamp\";s:10:\"1621957655\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"112\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:24:\"Spa massage in spa salon\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:47:{i:0;s:10:\"relaxation\";i:1;s:9:\"massaging\";i:2;s:5:\"women\";i:3;s:19:\"alternative therapy\";i:4;s:5:\"towel\";i:5;s:13:\"spa treatment\";i:6;s:17:\"healthy lifestyle\";i:7;s:9:\"body care\";i:8;s:16:\"beauty treatment\";i:9;s:9:\"pampering\";i:10;s:17:\"massage therapist\";i:11;s:5:\"adult\";i:12;s:6:\"beauty\";i:13;s:9:\"wellbeing\";i:14;s:10:\"lifestyles\";i:15;s:10:\"health spa\";i:16;s:10:\"beauty spa\";i:17;s:10:\"two people\";i:18;s:6:\"luxury\";i:19;s:10:\"human hand\";i:20;s:19:\"caucasian ethnicity\";i:21;s:4:\"back\";i:22;s:13:\"massage table\";i:23;s:9:\"vacations\";i:24;s:15:\"human body part\";i:25;s:10:\"lying down\";i:26;s:4:\"care\";i:27;s:6:\"candle\";i:28;s:7:\"smiling\";i:29;s:11:\"eyes closed\";i:30;s:9:\"enjoyment\";i:31;s:13:\"serene people\";i:32;s:9:\"freshness\";i:33;s:7:\"therapy\";i:34;s:11:\"young adult\";i:35;s:9:\"happiness\";i:36;s:14:\"tourist resort\";i:37;s:12:\"aromatherapy\";i:38;s:11:\"young women\";i:39;s:6:\"nature\";i:40;s:10:\"human face\";i:41;s:20:\"alternative medicine\";i:42;s:8:\"close-up\";i:43;s:7:\"massage\";i:44;s:9:\"therapist\";i:45;s:3:\"spa\";i:46;s:9:\"spa salon\";}}}'),(94,30,'_elementor_source_image_hash','3ac2d36a2e2ecdcee2ea3c4a5665cab5eae8382d'),(95,31,'_elementor_source_image_hash','cc9721ed9284098e766478e0271ae8817cd26fb6'),(96,32,'_elementor_edit_mode','builder'),(97,32,'_elementor_template_type','page'),(98,33,'_wp_attached_file','2023/06/jasmine-flowers-white-23.png'),(99,33,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:618;s:6:\"height\";i:339;s:4:\"file\";s:36:\"2023/06/jasmine-flowers-white-23.png\";s:8:\"filesize\";i:33075;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"jasmine-flowers-white-23-300x165.png\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20530;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"jasmine-flowers-white-23-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10095;}}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:{}}}'),(100,35,'_wp_attached_file','2023/06/4625-Floating-Flowers.png'),(101,34,'_wp_attached_file','2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png'),(102,34,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:70:\"2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\";s:8:\"filesize\";i:54241;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21065;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9065;}}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:{}}}'),(103,35,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:294;s:4:\"file\";s:33:\"2023/06/4625-Floating-Flowers.png\";s:8:\"filesize\";i:9156;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"4625-Floating-Flowers-300x238.png\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11594;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"4625-Floating-Flowers-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6076;}}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:{}}}'),(104,33,'_elementor_source_image_hash','08a498a63880f70cf65c300db16f30929b4fac6d'),(105,35,'_elementor_source_image_hash','764baddd6d411a55e933fea388446cb07effb44d'),(106,34,'_elementor_source_image_hash','79716bb01880840834885fff9331e2b90c504777'),(107,32,'_elementor_version','3.14.0'),(108,36,'_wp_attached_file','2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg'),(109,36,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:69:\"2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\";s:8:\"filesize\";i:105868;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31072;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19502;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:69:\"face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89768;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(110,36,'_elementor_source_image_hash','de2eea3cac075a5fc5631f645a06e5c9f6d09596'),(111,37,'_elementor_edit_mode','builder'),(112,37,'_elementor_template_type','page'),(113,37,'_elementor_version','3.14.0'),(114,32,'_wp_page_template','elementor_header_footer'),(115,32,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(116,32,'_elementor_data','[{\"id\":\"361f5533\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"613d6d5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e60a857\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e3c9b3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"35f3488c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e982381\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-24.png\"},\"title_text\":\"0083-888-567\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"title_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4c1e85\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31e6173d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-8.png\"},\"title_text\":\"esseine@mail.com\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"617ed9d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5084557\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-22.png\"},\"title_text\":\"London SE1 7PB, UK\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a489e59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3606fb85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"315a8b29\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":523,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"height_mobile\":{\"unit\":\"px\",\"size\":322,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":499,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5a807ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d2dff2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\"},\"_z_index\":0,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":119},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-86,\"unit\":\"px\"},\"_offset_y\":{\"size\":-79,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":91},\"_offset_x_tablet\":{\"size\":-58,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":219,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-74,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-65,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a7e6f58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"608ac087\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"573ca175\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"204***1632970867422\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false}]'),(117,38,'_elementor_edit_mode','builder'),(118,38,'_elementor_template_type','page'),(119,38,'_elementor_version','3.14.0'),(120,38,'_wp_page_template','elementor_header_footer'),(121,38,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(122,38,'_elementor_data','[{\"id\":\"361f5533\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"613d6d5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e60a857\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e3c9b3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"35f3488c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e982381\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-24.png\"},\"title_text\":\"0083-888-567\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"title_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"2f4c1e85\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31e6173d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-8.png\"},\"title_text\":\"esseine@mail.com\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"617ed9d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5084557\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-22.png\"},\"title_text\":\"London SE1 7PB, UK\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a489e59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3606fb85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"315a8b29\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":523,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"height_mobile\":{\"unit\":\"px\",\"size\":322,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":499,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"5a807ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d2dff2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\"},\"_z_index\":0,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":119},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-86,\"unit\":\"px\"},\"_offset_y\":{\"size\":-79,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":91},\"_offset_x_tablet\":{\"size\":-58,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":219,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-74,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-65,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a7e6f58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"608ac087\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"573ca175\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"204***1632970867422\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false}]'),(123,32,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(124,32,'_eael_custom_js',''),(125,32,'envato_tk_source_kit','8'),(126,32,'envato_tk_source_index','4'),(127,39,'_wp_attached_file','2023/06/4607-Massage-1.png'),(128,39,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:368;s:6:\"height\";i:370;s:4:\"file\";s:26:\"2023/06/4607-Massage-1.png\";s:8:\"filesize\";i:9653;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"4607-Massage-1-298x300.png\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11353;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"4607-Massage-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5283;}}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:{}}}'),(129,39,'_elementor_source_image_hash','bac8865ff2f8c2aca5f4963e9d94b09e820d483c'),(130,40,'_wp_attached_file','2023/06/jasmine-flowers-white2.png'),(131,40,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:437;s:6:\"height\";i:418;s:4:\"file\";s:34:\"2023/06/jasmine-flowers-white2.png\";s:8:\"filesize\";i:39498;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"jasmine-flowers-white2-300x287.png\";s:5:\"width\";i:300;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26098;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"jasmine-flowers-white2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9683;}}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:{}}}'),(132,40,'_elementor_source_image_hash','83b34d2f5e6c11b0807dc5bc9b34b189eca11148'),(133,41,'_wp_attached_file','2023/06/jasmine-branch-white1.png'),(134,41,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:855;s:6:\"height\";i:592;s:4:\"file\";s:33:\"2023/06/jasmine-branch-white1.png\";s:8:\"filesize\";i:25165;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"jasmine-branch-white1-300x208.png\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11323;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"jasmine-branch-white1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5173;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"jasmine-branch-white1-768x532.png\";s:5:\"width\";i:768;s:6:\"height\";i:532;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40536;}}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:{}}}'),(135,42,'_wp_attached_file','2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png'),(136,42,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:70:\"2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\";s:8:\"filesize\";i:30510;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11331;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5387;}}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:{}}}'),(137,42,'_elementor_source_image_hash','205ec61a03708469267f2056504873a355252c51'),(138,41,'_elementor_source_image_hash','5954cad0077f267716caad671157cdcdbf14c791'),(139,43,'_wp_attached_file','2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png'),(140,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:70:\"2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\";s:8:\"filesize\";i:32235;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12241;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5455;}}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:{}}}'),(141,43,'_elementor_source_image_hash','f25efe81a9aa9efcae6a5b820d9ee200d339c376'),(142,44,'_wp_attached_file','2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg'),(143,44,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1420;s:6:\"height\";i:948;s:4:\"file\";s:65:\"2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\";s:8:\"filesize\";i:142978;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29997;}s:5:\"large\";a:5:{s:4:\"file\";s:66:\"beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95975;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24388;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:65:\"beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66903;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:45:\"Beautiful woman lying on massage table in Spa\";s:17:\"created_timestamp\";s:10:\"1525874663\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"62\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:9:\"0.0015625\";s:5:\"title\";s:46:\"Beautiful woman lying on massage table in Spa.\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:3:\"spa\";i:1;s:5:\"adult\";i:2;s:11:\"alternative\";i:3;s:10:\"attractive\";i:4;s:4:\"back\";i:5;s:6:\"beauty\";i:6;s:4:\"body\";i:7;s:6:\"candle\";i:8;s:4:\"care\";i:9;s:6:\"closed\";i:10;s:11:\"comfortable\";i:11;s:4:\"copy\";i:12;s:8:\"darkness\";i:13;s:7:\"day-spa\";i:14;s:6:\"dayspa\";i:15;s:4:\"down\";i:16;s:9:\"enjoyment\";i:17;s:4:\"eyes\";i:18;s:4:\"face\";i:19;s:6:\"female\";i:20;s:5:\"front\";i:21;s:5:\"green\";i:22;s:6:\"health\";i:23;s:10:\"healthcare\";i:24;s:7:\"healthy\";i:25;s:3:\"hot\";i:26;s:5:\"human\";i:27;s:7:\"indoors\";i:28;s:6:\"luxury\";i:29;s:5:\"lying\";i:30;s:8:\"medicine\";i:31;s:6:\"muscle\";i:32;s:7:\"natural\";i:33;s:3:\"one\";i:34;s:9:\"pampering\";i:35;s:10:\"procedures\";i:36;s:6:\"purity\";i:37;s:10:\"recreation\";i:38;s:8:\"relaxing\";i:39;s:6:\"resort\";i:40;s:7:\"resting\";i:41;s:5:\"salon\";i:42;s:5:\"space\";i:43;s:7:\"therapy\";i:44;s:5:\"towel\";i:45;s:9:\"treatment\";i:46;s:8:\"tropical\";i:47;s:5:\"waist\";i:48;s:9:\"wellbeing\";i:49;s:5:\"woman\";}}}'),(144,45,'_elementor_edit_mode','builder'),(145,45,'_elementor_template_type','section'),(146,46,'_wp_attached_file','2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg'),(147,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:64:\"2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\";s:8:\"filesize\";i:114145;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33353;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22865;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:64:\"afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87804;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(148,46,'_elementor_source_image_hash','01de7387db3b50e999156415c65e5028659eca75'),(149,44,'_elementor_source_image_hash','46bf97103ddfad443f38cbe6d562bce82f247a77'),(150,47,'_elementor_edit_mode','builder'),(151,47,'_elementor_template_type','section'),(152,45,'_elementor_version','3.14.0'),(153,47,'_elementor_version','3.14.0'),(154,48,'_elementor_edit_mode','builder'),(155,48,'_elementor_template_type','section'),(156,48,'_elementor_version','3.14.0'),(157,45,'_wp_page_template','elementor_canvas'),(158,45,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(159,45,'_elementor_data','[{\"id\":\"3fa317ad\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21f7e34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c3f9204\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26e8cf8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"940e2e1\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Text\",\"mf_input_name\":\"mf-text\",\"mf_input_placeholder\":\"Name\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_background_color\":\"globals\\/colors?id=30e5369\",\"mf_input_border_color\":\"globals\\/colors?id=secondary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-text\"}],\"isInner\":true},{\"id\":\"36ad7ff0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17cfd00d\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Text\",\"mf_input_name\":\"mf-text\",\"mf_input_placeholder\":\"Contact\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_background_color\":\"globals\\/colors?id=30e5369\",\"mf_input_border_color\":\"globals\\/colors?id=secondary\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-text\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3be76ea5\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"Email\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Roboto\",\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_background_color\":\"globals\\/colors?id=30e5369\",\"mf_input_border_color\":\"globals\\/colors?id=secondary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-email\"},{\"id\":\"3b5c856\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Textarea\",\"mf_input_name\":\"mf-textarea\",\"mf_input_placeholder\":\"Textarea\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_background_color\":\"globals\\/colors?id=30e5369\",\"mf_input_border_color\":\"globals\\/colors?id=secondary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-textarea\"},{\"id\":\"2bc4683\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Submit Button\",\"mf_btn_align\":\"justify\",\"mf_hidden_input\":[],\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_bg_color_color\":\"#D59999\",\"mf_btn_bg_hover_color_background\":\"classic\",\"mf_btn_bg_hover_color_color\":\"#5E0826\",\"mf_btn_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"mf_btn_align_mobile\":\"justify\",\"mf_btn_align_tablet\":\"justify\",\"mf_btn_icon\":{\"value\":\"\",\"library\":\"\"},\"mf_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_slideshow_gallery\":[],\"mf_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":false}],\"isInner\":false}]'),(160,49,'_wp_attached_file','2023/06/4606-Mask-on-Face-1.png'),(161,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:333;s:6:\"height\";i:360;s:4:\"file\";s:31:\"2023/06/4606-Mask-on-Face-1.png\";s:8:\"filesize\";i:12354;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"4606-Mask-on-Face-1-278x300.png\";s:5:\"width\";i:278;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16154;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"4606-Mask-on-Face-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7872;}}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:{}}}'),(162,50,'_elementor_edit_mode','builder'),(163,50,'_elementor_template_type','section'),(164,50,'_elementor_version','3.14.0'),(165,50,'_wp_page_template','default'),(166,50,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(167,50,'_elementor_data','[{\"id\":\"3fa317ad\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21f7e34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c3f9204\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26e8cf8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"940e2e1\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Text\",\"mf_input_name\":\"mf-text\",\"mf_input_placeholder\":\"Name\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_background_color\":\"globals\\/colors?id=30e5369\",\"mf_input_border_color\":\"globals\\/colors?id=secondary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-text\"}],\"isInner\":true},{\"id\":\"36ad7ff0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17cfd00d\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Text\",\"mf_input_name\":\"mf-text\",\"mf_input_placeholder\":\"Contact\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_background_color\":\"globals\\/colors?id=30e5369\",\"mf_input_border_color\":\"globals\\/colors?id=secondary\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-text\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3be76ea5\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"Email\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Roboto\",\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_background_color\":\"globals\\/colors?id=30e5369\",\"mf_input_border_color\":\"globals\\/colors?id=secondary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-email\"},{\"id\":\"3b5c856\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Textarea\",\"mf_input_name\":\"mf-textarea\",\"mf_input_placeholder\":\"Textarea\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_background_color\":\"globals\\/colors?id=30e5369\",\"mf_input_border_color\":\"globals\\/colors?id=secondary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-textarea\"},{\"id\":\"2bc4683\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Submit Button\",\"mf_btn_align\":\"justify\",\"mf_hidden_input\":[],\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_bg_color_color\":\"#D59999\",\"mf_btn_bg_hover_color_background\":\"classic\",\"mf_btn_bg_hover_color_color\":\"#5E0826\",\"mf_btn_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"mf_btn_align_mobile\":\"justify\",\"mf_btn_align_tablet\":\"justify\",\"mf_btn_icon\":{\"value\":\"\",\"library\":\"\"},\"mf_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_slideshow_gallery\":[],\"mf_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":false}],\"isInner\":false}]'),(168,49,'_elementor_source_image_hash','a5ff5f9b3847cbfe2e6a1ade91a4c560f4aea1d7'),(169,45,'_elementor_page_assets','a:0:{}'),(170,45,'_eael_custom_js',''),(171,45,'envato_tk_source_kit','8'),(172,45,'envato_tk_source_index','12'),(173,51,'_elementor_edit_mode','builder'),(174,51,'_elementor_template_type','section'),(175,51,'_elementor_version','3.14.0'),(176,47,'_wp_page_template','elementor_canvas'),(177,47,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(178,47,'_elementor_data','[{\"id\":\"15a4cbf1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"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\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2fa6510d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b8bf377\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fc7e4f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":90.316999999999993,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":70,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f56a081\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"Email\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"mf_input_color_hover\":\"#5E0826\",\"mf_input_color_focus\":\"#5E0826\",\"mf_input_background_focus_background\":\"classic\",\"mf_input_background_focus_color\":\"#FFFFFF\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"__globals__\":{\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"mf_input_placeholder_color\":\"globals\\/colors?id=primary\",\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_background_color\":\"globals\\/colors?id=30e5369\"},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-email\"}],\"isInner\":true},{\"id\":\"3ee2c56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":9.6379999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fb9f7f4\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"\",\"mf_btn_align\":\"left\",\"mf_btn_icon\":{\"value\":\"fas fa-search\",\"library\":\"fa-solid\"},\"mf_hidden_input\":[],\"mf_btn_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"13\",\"left\":\"20\",\"isLinked\":false},\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_bg_hover_color_background\":\"classic\",\"mf_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"mf_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"mf_btn_normal_icon_padding_left\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"mf_btn_text_color\":\"globals\\/colors?id=30e5369\",\"mf_btn_bg_color_color\":\"globals\\/colors?id=primary\",\"mf_btn_hover_color\":\"globals\\/colors?id=30e5369\",\"mf_btn_bg_hover_color_color\":\"globals\\/colors?id=secondary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-42\",\"isLinked\":false},\"mf_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_slideshow_gallery\":[],\"mf_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(179,52,'_elementor_edit_mode','builder'),(180,52,'_elementor_template_type','section'),(181,52,'_elementor_version','3.14.0'),(182,52,'_wp_page_template','default'),(183,52,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(184,52,'_elementor_data','[{\"id\":\"15a4cbf1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"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\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2fa6510d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b8bf377\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fc7e4f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":90.316999999999993,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":70,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f56a081\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"Email\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"mf_input_color_hover\":\"#5E0826\",\"mf_input_color_focus\":\"#5E0826\",\"mf_input_background_focus_background\":\"classic\",\"mf_input_background_focus_color\":\"#FFFFFF\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"__globals__\":{\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"mf_input_placeholder_color\":\"globals\\/colors?id=primary\",\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_background_color\":\"globals\\/colors?id=30e5369\"},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-email\"}],\"isInner\":true},{\"id\":\"3ee2c56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":9.6379999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fb9f7f4\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"\",\"mf_btn_align\":\"left\",\"mf_btn_icon\":{\"value\":\"fas fa-search\",\"library\":\"fa-solid\"},\"mf_hidden_input\":[],\"mf_btn_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"13\",\"left\":\"20\",\"isLinked\":false},\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_bg_hover_color_background\":\"classic\",\"mf_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"mf_btn_normal_icon_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"mf_btn_normal_icon_padding_left\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"mf_btn_text_color\":\"globals\\/colors?id=30e5369\",\"mf_btn_bg_color_color\":\"globals\\/colors?id=primary\",\"mf_btn_hover_color\":\"globals\\/colors?id=30e5369\",\"mf_btn_bg_hover_color_color\":\"globals\\/colors?id=secondary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-42\",\"isLinked\":false},\"mf_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_slideshow_gallery\":[],\"mf_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(185,47,'_elementor_page_assets','a:0:{}'),(186,47,'_eael_custom_js',''),(187,47,'envato_tk_source_kit','8'),(188,47,'envato_tk_source_index','13'),(189,53,'_wp_attached_file','2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4.png'),(190,53,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:70:\"2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4.png\";s:8:\"filesize\";i:57002;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23553;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10130;}}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:{}}}'),(191,53,'_elementor_source_image_hash','2d8b6ba2d5a586ed86087cc065e172622a3cf1e5'),(192,54,'_elementor_edit_mode','builder'),(193,54,'_elementor_template_type','page'),(194,55,'_wp_attached_file','2023/06/jasmine-flowers-white-3.1-Converted.png'),(195,55,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:970;s:6:\"height\";i:950;s:4:\"file\";s:47:\"2023/06/jasmine-flowers-white-3.1-Converted.png\";s:8:\"filesize\";i:71859;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"jasmine-flowers-white-3.1-Converted-300x294.png\";s:5:\"width\";i:300;s:6:\"height\";i:294;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23800;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"jasmine-flowers-white-3.1-Converted-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8779;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"jasmine-flowers-white-3.1-Converted-768x752.png\";s:5:\"width\";i:768;s:6:\"height\";i:752;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87639;}}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:{}}}'),(196,54,'_elementor_version','3.14.0'),(197,56,'_wp_attached_file','2023/06/Logo-Esseine.png'),(198,56,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:985;s:6:\"height\";i:348;s:4:\"file\";s:24:\"2023/06/Logo-Esseine.png\";s:8:\"filesize\";i:22785;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Logo-Esseine-300x106.png\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12028;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Logo-Esseine-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6252;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"Logo-Esseine-768x271.png\";s:5:\"width\";i:768;s:6:\"height\";i:271;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33655;}}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:{}}}'),(199,57,'_wp_attached_file','2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png'),(200,57,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:68:\"2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\";s:8:\"filesize\";i:48568;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20289;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8618;}}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:{}}}'),(201,55,'_elementor_source_image_hash','fb0b5f726b18680a185855f9cfa3107b6d805622'),(202,57,'_elementor_source_image_hash','b2efc29510ccd7c87e8f112c3389ecab2dd874ab'),(203,56,'_elementor_source_image_hash','9b06fbd903d8d540d11aa8cda75eb81934dc12a2'),(204,58,'_elementor_edit_mode','builder'),(205,58,'_elementor_template_type','page'),(206,58,'_elementor_version','3.14.0'),(207,54,'_wp_page_template','elementor_header_footer'),(208,54,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(209,54,'_elementor_data','[{\"id\":\"5cbed193\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"913afe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d91fe1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Question\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48e497ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e0c36ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"efa89d8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":268},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-230.98599999999999,\"unit\":\"px\"},\"_offset_y\":{\"size\":-91.975999999999999,\"unit\":\"px\"},\"opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b0c0c1f\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=8a8bed2\",\"title_color\":\"globals\\/colors?id=primary\",\"tab_active_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false},{\"id\":\"754b70ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5063a50d\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"tab_active_color\":\"globals\\/colors?id=primary\",\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=8a8bed2\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bf844d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f148af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b0662c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"424ee276\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"227e8679\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"464ee070\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"align_mobile\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0a0643\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a085d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"_inline_size_tablet\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57eedfa7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":12,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"603d8380\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"658e1f33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e82940b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":140},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-147,\"unit\":\"px\"},\"_offset_y\":{\"size\":-64,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":90},\"_offset_x_tablet\":{\"size\":-108,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":209,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-46,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-258,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"52870122\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Services Online Regarding Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4df2a8ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b17d132\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(210,59,'_elementor_edit_mode','builder'),(211,59,'_elementor_template_type','page'),(212,59,'_elementor_version','3.14.0'),(213,59,'_wp_page_template','elementor_header_footer'),(214,59,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(215,59,'_elementor_data','[{\"id\":\"5cbed193\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"913afe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d91fe1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Question\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48e497ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e0c36ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"efa89d8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":268},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-230.98599999999999,\"unit\":\"px\"},\"_offset_y\":{\"size\":-91.975999999999999,\"unit\":\"px\"},\"opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b0c0c1f\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=8a8bed2\",\"title_color\":\"globals\\/colors?id=primary\",\"tab_active_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false},{\"id\":\"754b70ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5063a50d\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_padding_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"tab_active_color\":\"globals\\/colors?id=primary\",\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=8a8bed2\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bf844d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f148af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b0662c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"424ee276\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"227e8679\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"464ee070\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"align_mobile\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0a0643\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a085d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"_inline_size_tablet\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57eedfa7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":12,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"603d8380\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"658e1f33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e82940b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":140},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-147,\"unit\":\"px\"},\"_offset_y\":{\"size\":-64,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":89},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":90},\"_offset_x_tablet\":{\"size\":-108,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":209,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-46,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-258,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"52870122\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Services Online Regarding Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4df2a8ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b17d132\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(216,54,'_elementor_page_assets','a:0:{}'),(217,54,'_eael_custom_js',''),(218,54,'envato_tk_source_kit','8'),(219,54,'envato_tk_source_index','6'),(220,60,'_wp_attached_file','2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg'),(221,60,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:67:\"2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\";s:8:\"filesize\";i:98294;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29669;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19127;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:67:\"beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81470;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(222,60,'_elementor_source_image_hash','f142189366d99d910429bd6a995f7e41e28aa6b3'),(223,61,'_wp_attached_file','2023/06/jasmine-flowers-white-2-Converted.png'),(224,61,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:691;s:6:\"height\";i:917;s:4:\"file\";s:45:\"2023/06/jasmine-flowers-white-2-Converted.png\";s:8:\"filesize\";i:68610;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"jasmine-flowers-white-2-Converted-226x300.png\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23302;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"jasmine-flowers-white-2-Converted-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9891;}}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:{}}}'),(225,61,'_elementor_source_image_hash','5595ba9e8da0edbb4c8e76105dc188f8589841b2'),(226,62,'_wp_attached_file','2023/06/Logo-Esseine-White.png'),(227,62,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:985;s:6:\"height\";i:348;s:4:\"file\";s:30:\"2023/06/Logo-Esseine-White.png\";s:8:\"filesize\";i:17999;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Logo-Esseine-White-300x106.png\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7594;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Logo-Esseine-White-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Logo-Esseine-White-768x271.png\";s:5:\"width\";i:768;s:6:\"height\";i:271;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21602;}}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:{}}}'),(228,62,'_elementor_source_image_hash','e3c84a179a3b394826889caa43f938774fae47ae'),(229,63,'_elementor_edit_mode','builder'),(230,63,'_elementor_template_type','section'),(231,64,'_wp_attached_file','2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11.png'),(232,64,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:71:\"2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11.png\";s:8:\"filesize\";i:52236;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21684;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9460;}}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:{}}}'),(233,65,'_wp_attached_file','2023/06/petik.png'),(234,65,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:568;s:4:\"file\";s:17:\"2023/06/petik.png\";s:8:\"filesize\";i:18273;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"petik-300x243.png\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8883;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"petik-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3919;}}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:{}}}'),(235,65,'_elementor_source_image_hash','bdbb94a360f6d0a5d43602803873accd0a48dd2d'),(236,64,'_elementor_source_image_hash','9514dda965665ea8e72e5d582521d77d0698a4fb'),(237,63,'_elementor_version','3.14.0'),(238,66,'_elementor_edit_mode','builder'),(239,66,'_elementor_template_type','page'),(240,67,'_elementor_edit_mode','builder'),(241,67,'_elementor_template_type','section'),(242,67,'_elementor_version','3.14.0'),(243,63,'_wp_page_template','elementor_canvas'),(244,63,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(245,68,'_elementor_edit_mode','builder'),(246,63,'_elementor_data','[{\"id\":\"2ba3c660\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ce678ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28c47cf4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"56\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Logo-Esseine.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4572f239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21ad0eec\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=secondary\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"globals\\/colors?id=secondary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\",\"dropdown_icon\":{\"value\":\"fas fa-align-justify\",\"library\":\"fa-solid\"},\"dropdown_close_icon\":{\"value\":\"far fa-window-close\",\"library\":\"fa-regular\"},\"all_background_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_slideshow_gallery\":[],\"all_background_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(247,68,'_elementor_template_type','section'),(248,69,'_elementor_edit_mode','builder'),(249,69,'_elementor_template_type','section'),(250,69,'_elementor_version','3.14.0'),(251,69,'_wp_page_template','default'),(252,69,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(253,69,'_elementor_data','[{\"id\":\"2ba3c660\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ce678ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28c47cf4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"56\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Logo-Esseine.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4572f239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21ad0eec\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=secondary\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"globals\\/colors?id=secondary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\",\"dropdown_icon\":{\"value\":\"fas fa-align-justify\",\"library\":\"fa-solid\"},\"dropdown_close_icon\":{\"value\":\"far fa-window-close\",\"library\":\"fa-regular\"},\"all_background_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_slideshow_gallery\":[],\"all_background_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(254,63,'_elementor_page_assets','a:0:{}'),(255,63,'_eael_custom_js',''),(256,63,'envato_tk_source_kit','8'),(257,63,'envato_tk_source_index','14'),(258,66,'_elementor_version','3.14.0'),(259,68,'_elementor_version','3.14.0'),(260,70,'_elementor_edit_mode','builder'),(261,70,'_elementor_template_type','section'),(262,71,'_wp_attached_file','2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg'),(263,71,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:70:\"2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\";s:8:\"filesize\";i:77625;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27572;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18229;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68383;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(264,72,'_elementor_edit_mode','builder'),(265,72,'_elementor_template_type','page'),(266,72,'_elementor_version','3.14.0'),(267,66,'_wp_page_template','elementor_header_footer'),(268,66,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(269,66,'_elementor_data','[{\"id\":\"3642d82c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42796fe3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"aaabf4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles & News\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6be1c965\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ef2350a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5bd7405f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f84c0c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b88ca64\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28d63ba2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12a55125\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-7,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-19,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f91a566\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68bb8266\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14ca1cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Services Online Regarding Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d5839a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cad084e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(270,71,'_elementor_source_image_hash','bd678e4c2d55568c7bf26a867ab7833c74a05887'),(271,73,'_elementor_edit_mode','builder'),(272,73,'_elementor_template_type','page'),(273,73,'_elementor_version','3.14.0'),(274,73,'_wp_page_template','elementor_header_footer'),(275,73,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(276,73,'_elementor_data','[{\"id\":\"3642d82c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42796fe3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"aaabf4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles & News\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6be1c965\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ef2350a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5bd7405f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f84c0c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b88ca64\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28d63ba2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12a55125\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-7,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-19,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5f91a566\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"68bb8266\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14ca1cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Services Online Regarding Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d5839a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2cad084e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(277,66,'_elementor_page_assets','a:0:{}'),(278,66,'_eael_custom_js',''),(279,66,'envato_tk_source_kit','8'),(280,66,'envato_tk_source_index','9'),(281,74,'_elementor_edit_mode','builder'),(282,74,'_elementor_template_type','section'),(283,74,'_elementor_version','3.14.0'),(284,68,'_wp_page_template','elementor_canvas'),(285,68,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(286,68,'_elementor_data','[{\"id\":\"1a3a04da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a46b778\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a1f09e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73f767d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3c286d4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Logo-Esseine-White.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3169a5bd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"802b9f0\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"0afbf97\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ec310cc\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.29999999999999999,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\"},\"align_mobile\":\"center\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"69884d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22.527000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"122a05c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22832851\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1b55de5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20.817,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53f00386\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"348f5126\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"9459d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":31.655999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5079fc0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c87403\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Riverside Building, County Hall, London SE1 7PB, United Kingdom\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"57d6461\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+375(76) 878-76-76<br>contact@esseine.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"4baaf7d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"68e72022\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2021 Esseine Template \\u2022 All Rights Reserved\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=897f75f\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(287,70,'_elementor_version','3.14.0'),(288,75,'_elementor_edit_mode','builder'),(289,75,'_elementor_template_type','section'),(290,75,'_elementor_version','3.14.0'),(291,75,'_wp_page_template','default'),(292,75,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(293,75,'_elementor_data','[{\"id\":\"1a3a04da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a46b778\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a1f09e\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73f767d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3c286d4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Logo-Esseine-White.png\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3169a5bd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"802b9f0\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"0afbf97\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ec310cc\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.29999999999999999,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\"},\"align_mobile\":\"center\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"69884d1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22.527000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"122a05c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22832851\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1b55de5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20.817,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53f00386\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"348f5126\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"9459d30\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":31.655999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5079fc0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c87403\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Riverside Building, County Hall, London SE1 7PB, United Kingdom\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"57d6461\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+375(76) 878-76-76<br>contact@esseine.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"4baaf7d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"68e72022\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2021 Esseine Template \\u2022 All Rights Reserved\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=897f75f\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(294,68,'_elementor_page_assets','a:0:{}'),(295,68,'_eael_custom_js',''),(296,76,'_wp_attached_file','2023/06/spa-Y2EBL9H.jpg'),(297,76,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:666;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2023/06/spa-Y2EBL9H.jpg\";s:8:\"filesize\";i:78446;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"spa-Y2EBL9H-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20120;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"spa-Y2EBL9H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15573;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(298,68,'envato_tk_source_kit','8'),(299,68,'envato_tk_source_index','16'),(300,76,'_elementor_source_image_hash','18fcb6ffaccf73eb0d47c3aa88717f5b252d201d'),(301,77,'_elementor_edit_mode','builder'),(302,77,'_elementor_template_type','section'),(303,77,'_elementor_version','3.14.0'),(304,70,'_wp_page_template','elementor_canvas'),(305,70,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(306,70,'_elementor_data','[{\"id\":\"56db9c04\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"186ae019\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23870231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Logo-Esseine-White.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"131b9e77\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b02ff7c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=30e5369\",\"color_menu_item_active\":\"globals\\/colors?id=accent\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=30e5369\",\"all_text_color\":\"globals\\/colors?id=primary\",\"all_border_color\":\"globals\\/colors?id=30e5369\",\"all_background_hover_color_color\":\"globals\\/colors?id=cfd96a7\",\"all_hover_color\":\"globals\\/colors?id=30e5369\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=30e5369\"},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Marcellus\",\"menu_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_active\":\"#D59999\",\"color_dropdown_item\":\"#5E0826\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#D59999\",\"all_text_color\":\"#5E0826\",\"all_border_color\":\"#FFFFFF\",\"all_hover_color\":\"#FFFFFF\",\"resp_align\":\"right\",\"dropdown_icon\":{\"value\":\"fas fa-align-justify\",\"library\":\"fa-solid\"},\"dropdown_close_icon\":{\"value\":\"far fa-window-close\",\"library\":\"fa-regular\"},\"all_background_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_slideshow_gallery\":[],\"all_background_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(307,78,'_elementor_edit_mode','builder'),(308,78,'_elementor_template_type','section'),(309,78,'_elementor_version','3.14.0'),(310,78,'_wp_page_template','default'),(311,78,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(312,78,'_elementor_data','[{\"id\":\"56db9c04\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"186ae019\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23870231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Logo-Esseine-White.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"131b9e77\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b02ff7c\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=30e5369\",\"color_menu_item_active\":\"globals\\/colors?id=accent\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=30e5369\",\"all_text_color\":\"globals\\/colors?id=primary\",\"all_border_color\":\"globals\\/colors?id=30e5369\",\"all_background_hover_color_color\":\"globals\\/colors?id=cfd96a7\",\"all_hover_color\":\"globals\\/colors?id=30e5369\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=30e5369\"},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Marcellus\",\"menu_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_active\":\"#D59999\",\"color_dropdown_item\":\"#5E0826\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#D59999\",\"all_text_color\":\"#5E0826\",\"all_border_color\":\"#FFFFFF\",\"all_hover_color\":\"#FFFFFF\",\"resp_align\":\"right\",\"dropdown_icon\":{\"value\":\"fas fa-align-justify\",\"library\":\"fa-solid\"},\"dropdown_close_icon\":{\"value\":\"far fa-window-close\",\"library\":\"fa-regular\"},\"all_background_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_color_slideshow_gallery\":[],\"all_background_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"all_background_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(313,70,'_elementor_page_assets','a:0:{}'),(314,70,'_eael_custom_js',''),(315,70,'envato_tk_source_kit','8'),(316,70,'envato_tk_source_index','15'),(317,79,'_elementor_edit_mode','builder'),(318,79,'_elementor_template_type','page'),(319,80,'_wp_attached_file','2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg'),(320,80,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1501;s:6:\"height\";i:1000;s:4:\"file\";s:63:\"2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\";s:8:\"filesize\";i:140270;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25799;}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83063;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19868;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58930;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(321,79,'_elementor_version','3.14.0'),(322,80,'_elementor_source_image_hash','b3733d3c3dc01feb9171de0b6308f55fb678ee25'),(323,81,'_elementor_edit_mode','builder'),(324,81,'_elementor_template_type','page'),(325,81,'_elementor_version','3.14.0'),(326,79,'_wp_page_template','elementor_header_footer'),(327,79,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(328,79,'_elementor_data','[{\"id\":\"640f5e2b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5985c7ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c8b6fb6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"33\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-23.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":297},\"_position\":\"absolute\",\"_offset_x\":{\"size\":334,\"unit\":\"px\"},\"_offset_y\":{\"size\":93,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":206},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":151},\"_offset_x_tablet\":{\"size\":207,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":117,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":81,\"unit\":\"px\"},\"opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e95d3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-branch-white1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":418},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-202.98599999999999,\"unit\":\"px\"},\"_offset_y\":{\"size\":-61.997,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":206},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":164},\"_offset_x_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-112,\"unit\":\"px\"},\"opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6259433\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"55\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-3.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":223},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1017.016,\"unit\":\"px\"},\"_offset_y\":{\"size\":302.01600000000002,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":206},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":192},\"_offset_x_tablet\":{\"size\":510,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-45,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":329,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":356,\"unit\":\"px\"},\"opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efc44f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\"},\"opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":132},\"_position\":\"absolute\",\"_offset_x\":{\"size\":643,\"unit\":\"px\"},\"_offset_y\":{\"size\":-87,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":88},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":64},\"_offset_x_tablet\":{\"size\":468,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":234,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-62,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-41,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3ea80001\",\"elType\":\"widget\",\"settings\":{\"title\":\"404\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=46a8498\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4623bc34\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4757532a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"626fb9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Page Not Found !!\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b487b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d69f344\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Back\",\"background_color\":\"#D59999\",\"hover_color\":\"#D59999\",\"button_background_hover_color\":\"#A1818100\",\"button_hover_border_color\":\"#D59999\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D59999\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_mask_shape\":\"blob\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_z_index_mobile\":1,\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(329,82,'_elementor_edit_mode','builder'),(330,82,'_elementor_template_type','page'),(331,82,'_elementor_version','3.14.0'),(332,82,'_wp_page_template','elementor_header_footer'),(333,82,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(334,82,'_elementor_data','[{\"id\":\"640f5e2b\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5985c7ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c8b6fb6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"33\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-23.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":297},\"_position\":\"absolute\",\"_offset_x\":{\"size\":334,\"unit\":\"px\"},\"_offset_y\":{\"size\":93,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":206},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":151},\"_offset_x_tablet\":{\"size\":207,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":117,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":81,\"unit\":\"px\"},\"opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e95d3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"41\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-branch-white1.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":418},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-202.98599999999999,\"unit\":\"px\"},\"_offset_y\":{\"size\":-61.997,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":206},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":164},\"_offset_x_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-112,\"unit\":\"px\"},\"opacity\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6259433\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"55\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-3.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":223},\"_position\":\"absolute\",\"_offset_x\":{\"size\":1017.016,\"unit\":\"px\"},\"_offset_y\":{\"size\":302.01600000000002,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":206},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":192},\"_offset_x_tablet\":{\"size\":510,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-45,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":329,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":356,\"unit\":\"px\"},\"opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1efc44f8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\"},\"opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":132},\"_position\":\"absolute\",\"_offset_x\":{\"size\":643,\"unit\":\"px\"},\"_offset_y\":{\"size\":-87,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":88},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":64},\"_offset_x_tablet\":{\"size\":468,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":234,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-62,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-41,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3ea80001\",\"elType\":\"widget\",\"settings\":{\"title\":\"404\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=46a8498\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4623bc34\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4757532a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"626fb9d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Page Not Found !!\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68b487b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d69f344\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Back\",\"background_color\":\"#D59999\",\"hover_color\":\"#D59999\",\"button_background_hover_color\":\"#A1818100\",\"button_hover_border_color\":\"#D59999\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D59999\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_mask_shape\":\"blob\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_z_index_mobile\":1,\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(335,79,'_elementor_page_assets','a:0:{}'),(336,79,'_eael_custom_js',''),(337,79,'envato_tk_source_kit','8'),(338,79,'envato_tk_source_index','11'),(339,83,'_wp_attached_file','2023/06/spring-spa-setting-PQSX3EK.png'),(340,83,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:570;s:6:\"height\";i:344;s:4:\"file\";s:38:\"2023/06/spring-spa-setting-PQSX3EK.png\";s:8:\"filesize\";i:209317;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"spring-spa-setting-PQSX3EK-300x181.png\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63036;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"spring-spa-setting-PQSX3EK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30955;}}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:{}}}'),(341,84,'_wp_attached_file','2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg'),(342,84,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:51:\"2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\";s:8:\"filesize\";i:84203;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27980;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18076;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72232;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(343,83,'_elementor_source_image_hash','adc22d480fe49103bc4c6090bf50c7667f331cd4'),(344,84,'_elementor_source_image_hash','4a8dde3dcc0793df156d67465d4ddc81d0bc4677'),(345,85,'_wp_attached_file','2023/06/two-young-woman-applying-moisturizing-cream-each-o-R9WC5FN.jpg'),(346,85,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:666;s:6:\"height\";i:1000;s:4:\"file\";s:70:\"2023/06/two-young-woman-applying-moisturizing-cream-each-o-R9WC5FN.jpg\";s:8:\"filesize\";i:113083;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"two-young-woman-applying-moisturizing-cream-each-o-R9WC5FN-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23798;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"two-young-woman-applying-moisturizing-cream-each-o-R9WC5FN-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17106;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(347,85,'_elementor_source_image_hash','07a04235f4d218a8d9cc3355f90205d0a057f407'),(348,86,'_wp_attached_file','2023/06/beauty-sleep-7DRHLVJ-1.jpg'),(349,86,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:34:\"2023/06/beauty-sleep-7DRHLVJ-1.jpg\";s:8:\"filesize\";i:61508;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"beauty-sleep-7DRHLVJ-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30520;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"beauty-sleep-7DRHLVJ-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19280;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(350,86,'_elementor_source_image_hash','aa730d559c06239827ea1a99b6f88fd3a4696339'),(351,87,'_wp_attached_file','2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10.png'),(352,87,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:71:\"2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10.png\";s:8:\"filesize\";i:32427;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12993;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5655;}}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:{}}}'),(353,87,'_elementor_source_image_hash','b9d6b3a5ca1868c85bffe8553a63b73d69e20ede'),(354,88,'_wp_attached_file','2023/06/spring-spa-setting-PQSX3EK.jpg'),(355,88,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:38:\"2023/06/spring-spa-setting-PQSX3EK.jpg\";s:8:\"filesize\";i:118440;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"spring-spa-setting-PQSX3EK-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32867;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"spring-spa-setting-PQSX3EK-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21779;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"spring-spa-setting-PQSX3EK-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94005;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(356,89,'_wp_attached_file','2023/06/beautiful-young-woman-at-a-spa-salon-PCXQB3L.jpg'),(357,89,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:666;s:6:\"height\";i:1000;s:4:\"file\";s:56:\"2023/06/beautiful-young-woman-at-a-spa-salon-PCXQB3L.jpg\";s:8:\"filesize\";i:122432;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"beautiful-young-woman-at-a-spa-salon-PCXQB3L-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26165;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"beautiful-young-woman-at-a-spa-salon-PCXQB3L-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18677;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(358,88,'_elementor_source_image_hash','7640a3ba5b0c2ecced7436c77b86f928baecbf70'),(359,89,'_elementor_source_image_hash','de7d54a3784587ad6f623b62cccb74edf78d1a9c'),(360,90,'_wp_attached_file','2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg'),(361,90,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:72:\"2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\";s:8:\"filesize\";i:67529;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33945;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22590;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(362,90,'_elementor_source_image_hash','ef93d75821298803198611a1ff563a1928f790dc'),(363,91,'_wp_attached_file','2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12.png'),(364,91,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:71:\"2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12.png\";s:8:\"filesize\";i:45856;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18305;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7842;}}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:{}}}'),(365,91,'_elementor_source_image_hash','811f3edd9c31c4616d4bc5920e29666a5c323573'),(366,92,'_wp_attached_file','2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg'),(367,92,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1501;s:6:\"height\";i:1000;s:4:\"file\";s:70:\"2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\";s:8:\"filesize\";i:78826;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16825;}s:5:\"large\";a:5:{s:4:\"file\";s:71:\"relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52474;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13801;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36865;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(368,92,'_elementor_source_image_hash','b23b6b78b1b02ce7e1bb46be7a4dc01b62e550af'),(369,93,'_wp_attached_file','2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-1.jpg'),(370,93,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1420;s:6:\"height\";i:947;s:4:\"file\";s:53:\"2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-1.jpg\";s:8:\"filesize\";i:142627;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"beautiful-girl-in-the-spa-hotel-PGVT9EK-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36126;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"beautiful-girl-in-the-spa-hotel-PGVT9EK-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98572;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"beautiful-girl-in-the-spa-hotel-PGVT9EK-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28812;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"beautiful-girl-in-the-spa-hotel-PGVT9EK-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72651;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:7:\"Anna Om\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:138:\"Beautiful girl spending time in the spa hotel, relaxing in the nice bath with foam, looking in the window, healthy treatment and enjoyment\";s:17:\"created_timestamp\";s:10:\"1320537600\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:31:\"Beautiful girl in the spa hotel\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:4:\"bath\";i:1;s:7:\"bathing\";i:2;s:8:\"bathroom\";i:3;s:7:\"bathtub\";i:4;s:9:\"beautiful\";i:5;s:6:\"beauty\";i:6;s:4:\"body\";i:7;s:7:\"bubbles\";i:8;s:4:\"calm\";i:9;s:7:\"candles\";i:10;s:4:\"care\";i:11;s:5:\"clean\";i:12;s:6:\"dayspa\";i:13;s:8:\"enjoying\";i:14;s:9:\"enjoyment\";i:15;s:6:\"female\";i:16;s:4:\"foam\";i:17;s:4:\"girl\";i:18;s:5:\"happy\";i:19;s:6:\"health\";i:20;s:10:\"healthcare\";i:21;s:7:\"healthy\";i:22;s:4:\"home\";i:23;s:5:\"hotel\";i:24;s:7:\"hygiene\";i:25;s:7:\"indoors\";i:26;s:6:\"inside\";i:27;s:8:\"interior\";i:28;s:17:\"looking at window\";i:29;s:6:\"luxury\";i:30;s:5:\"lying\";i:31;s:6:\"people\";i:32;s:6:\"person\";i:33;s:8:\"pleasure\";i:34;s:5:\"relax\";i:35;s:10:\"relaxation\";i:36;s:7:\"relaxed\";i:37;s:6:\"resort\";i:38;s:4:\"skin\";i:39;s:4:\"soap\";i:40;s:3:\"spa\";i:41;s:7:\"therapy\";i:42;s:9:\"treatment\";i:43;s:7:\"washing\";i:44;s:5:\"water\";i:45;s:9:\"wellbeing\";i:46;s:8:\"wellness\";i:47;s:5:\"woman\";i:48;s:5:\"young\";i:49;s:3:\"zen\";}}}'),(371,93,'_elementor_source_image_hash','f2cf735d31e368f3346cb94f383bc0cffce2f476'),(372,94,'_wp_attached_file','2023/06/jasmine-flowers-white-4.1-Converted.png'),(373,94,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:448;s:6:\"height\";i:950;s:4:\"file\";s:47:\"2023/06/jasmine-flowers-white-4.1-Converted.png\";s:8:\"filesize\";i:47292;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"jasmine-flowers-white-4.1-Converted-141x300.png\";s:5:\"width\";i:141;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17074;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"jasmine-flowers-white-4.1-Converted-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9057;}}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:{}}}'),(374,95,'_wp_attached_file','2023/06/jasmine-flowers-white-1-Converted.png'),(375,95,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:896;s:6:\"height\";i:856;s:4:\"file\";s:45:\"2023/06/jasmine-flowers-white-1-Converted.png\";s:8:\"filesize\";i:60404;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"jasmine-flowers-white-1-Converted-300x287.png\";s:5:\"width\";i:300;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20613;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"jasmine-flowers-white-1-Converted-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7418;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"jasmine-flowers-white-1-Converted-768x734.png\";s:5:\"width\";i:768;s:6:\"height\";i:734;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78430;}}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:{}}}'),(376,94,'_elementor_source_image_hash','3e26af60dbf0dad279e7ae7d0d8f5b2575727629'),(377,96,'_wp_attached_file','2023/06/jasmine-flowers-white-4.1-Converted-1.png'),(378,96,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:448;s:6:\"height\";i:950;s:4:\"file\";s:49:\"2023/06/jasmine-flowers-white-4.1-Converted-1.png\";s:8:\"filesize\";i:47292;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"jasmine-flowers-white-4.1-Converted-1-141x300.png\";s:5:\"width\";i:141;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17074;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"jasmine-flowers-white-4.1-Converted-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9057;}}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:{}}}'),(379,96,'_elementor_source_image_hash','3e26af60dbf0dad279e7ae7d0d8f5b2575727629'),(380,95,'_elementor_source_image_hash','47e216698b56f0145b43e83409bbb3434e569a7a'),(381,97,'_wp_attached_file','2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png'),(382,97,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:902;s:4:\"file\";s:65:\"2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\";s:8:\"filesize\";i:219640;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68893;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24333;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:65:\"woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:412137;}}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:{}}}'),(383,98,'_wp_attached_file','2023/06/elements-eye-logo-VXUKND-2018-11-20.png'),(384,98,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:568;s:6:\"height\";i:508;s:4:\"file\";s:47:\"2023/06/elements-eye-logo-VXUKND-2018-11-20.png\";s:8:\"filesize\";i:26525;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"elements-eye-logo-VXUKND-2018-11-20-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15849;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"elements-eye-logo-VXUKND-2018-11-20-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7679;}}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:{}}}'),(385,98,'_elementor_source_image_hash','87261b163efc1d6a502206d9e32975f93776a089'),(386,99,'_wp_attached_file','2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1.png'),(387,97,'_elementor_source_image_hash','ac069d318025607a9f472438837d5581ec74d73b'),(388,99,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:902;s:4:\"file\";s:67:\"2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1.png\";s:8:\"filesize\";i:219640;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-300x271.png\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68893;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24333;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:67:\"woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-768x693.png\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:412137;}}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:{}}}'),(389,100,'_elementor_edit_mode','builder'),(390,100,'_elementor_template_type','page'),(391,100,'_elementor_version','3.14.0'),(392,99,'_elementor_source_image_hash','ac069d318025607a9f472438837d5581ec74d73b'),(393,101,'_elementor_edit_mode','builder'),(394,101,'_elementor_template_type','page'),(395,101,'_elementor_version','3.14.0'),(396,100,'_wp_page_template','elementor_header_footer'),(397,100,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(398,100,'_elementor_data','[{\"id\":\"5c76f766\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b6bb06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d2645e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76d417ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"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\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"764b134f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1257d9c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73b1dd7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e9ceba4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"33eaa497\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69a13535\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nFace Facial\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96765d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 26\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"160\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6817d273\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"25f9cd2c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1ed97e82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e8b984\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1abf3a57\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48ff54a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bfac964\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"754cd419\",\"elType\":\"widget\",\"settings\":{\"title\":\"Detoxifying\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69a10e1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 23\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"148\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c585ed0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e9a0d13\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e503bc9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56dfeeb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"426b6704\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cce7ed8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e04fca7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6b7e3ca0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"584329e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lomilomi Massage\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c420f8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 32\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60eabec4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58d72ac1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6eb142ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"41094c30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26e5fec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ad5e088\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5bcadea4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64a683b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Massage\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8a9709\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 21\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c11df70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c0f6c74\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29264d6e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3813d961\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b3ec4de\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e7fec0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f4adb2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"53a7c8fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21866b10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness Relaxing\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82f4b23\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 22\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"84\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55f09bfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b2f7cda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"72b82580\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d5d97ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16929615\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4fef468e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22a456d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4700078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"630d4497\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 34\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"210\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d878048\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39576375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d000bdc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15334ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59e83177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792cefde\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1631759838552\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6874723a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"134995e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2444fec1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"60c2c9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_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\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"30660bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":55,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"252f4304\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":359.983},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-800.976,\"unit\":\"px\"},\"_offset_y\":{\"size\":-20.013999999999999,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47891f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Question\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7fc00a5c\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#5E0826\",\"tab_active_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(399,102,'_elementor_edit_mode','builder'),(400,102,'_elementor_template_type','page'),(401,102,'_elementor_version','3.14.0'),(402,102,'_wp_page_template','elementor_header_footer'),(403,102,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(404,102,'_elementor_data','[{\"id\":\"5c76f766\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b6bb06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d2645e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76d417ac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"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\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"764b134f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1257d9c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73b1dd7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e9ceba4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"33eaa497\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69a13535\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nFace Facial\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"96765d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 26\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"160\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6817d273\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"25f9cd2c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1ed97e82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e8b984\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1abf3a57\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48ff54a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6bfac964\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"754cd419\",\"elType\":\"widget\",\"settings\":{\"title\":\"Detoxifying\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69a10e1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 23\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"148\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c585ed0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e9a0d13\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e503bc9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56dfeeb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"426b6704\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cce7ed8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e04fca7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6b7e3ca0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"584329e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lomilomi Massage\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c420f8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 32\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60eabec4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58d72ac1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6eb142ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"41094c30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26e5fec3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ad5e088\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5bcadea4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64a683b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Massage\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8a9709\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 21\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c11df70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c0f6c74\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29264d6e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3813d961\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b3ec4de\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e7fec0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f4adb2d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"53a7c8fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21866b10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness Relaxing\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82f4b23\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 22\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"84\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55f09bfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b2f7cda\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"72b82580\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d5d97ed\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16929615\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4fef468e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22a456d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4700078\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"630d4497\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 34\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"210\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d878048\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39576375\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d000bdc\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15334ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59e83177\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792cefde\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1631759838552\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6874723a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"134995e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2444fec1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"60c2c9b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_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\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"30660bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":55,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"252f4304\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":359.983},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-800.976,\"unit\":\"px\"},\"_offset_y\":{\"size\":-20.013999999999999,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"47891f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Question\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7fc00a5c\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#5E0826\",\"tab_active_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(405,100,'_elementor_page_assets','a:0:{}'),(406,100,'_eael_custom_js',''),(407,100,'envato_tk_source_kit','8'),(408,100,'envato_tk_source_index','8'),(409,103,'_wp_attached_file','2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png'),(410,103,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:568;s:6:\"height\";i:508;s:4:\"file\";s:65:\"2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\";s:8:\"filesize\";i:62742;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26653;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"elements-relax-resort-logo-template-GF6XU7-2019-02-17-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11995;}}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:{}}}'),(411,104,'_wp_attached_file','2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg'),(412,104,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1501;s:6:\"height\";i:1000;s:4:\"file\";s:70:\"2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\";s:8:\"filesize\";i:82055;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17198;}s:5:\"large\";a:5:{s:4:\"file\";s:71:\"happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54285;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14250;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38209;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(413,103,'_elementor_source_image_hash','6403f6f93670c8e722b0c2e7c7bef26271991a60'),(414,105,'_wp_attached_file','2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png'),(415,105,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:902;s:4:\"file\";s:69:\"2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\";s:8:\"filesize\";i:185097;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70628;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24701;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:69:\"woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:428057;}}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:{}}}'),(416,104,'_elementor_source_image_hash','d2315e9cea9c60f3bcad83395e41b4687b0c92eb'),(417,106,'_elementor_edit_mode','builder'),(418,106,'_elementor_template_type','page'),(419,105,'_elementor_source_image_hash','584069f32d990743472ea1442fec8e4fa56785db'),(420,106,'_elementor_version','3.14.0'),(421,107,'_wp_attached_file','2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-2.png'),(422,107,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:902;s:4:\"file\";s:69:\"2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-2.png\";s:8:\"filesize\";i:185097;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-2-300x271.png\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70628;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24701;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:69:\"woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-2-768x693.png\";s:5:\"width\";i:768;s:6:\"height\";i:693;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:428057;}}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:{}}}'),(423,108,'_elementor_edit_mode','builder'),(424,108,'_elementor_template_type','page'),(425,108,'_elementor_version','3.14.0'),(426,106,'_wp_page_template','elementor_header_footer'),(427,106,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(428,106,'_elementor_data','[{\"id\":\"30b3f40\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#D59999\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"660d4c10\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"272596a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lookbook\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"342d24cf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4846e840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60d20078\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2be9c709\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.563000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ae5a172\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a674a07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"61\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":345.45299999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-73,\"unit\":\"px\"},\"_offset_y\":{\"size\":-70,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":193.43799999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":179.43799999999999},\"_offset_x_tablet\":{\"size\":-29,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-46,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-46,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-30,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e5e996a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.436999999999998,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13c06d8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Gallery\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50b89595\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56e41a34\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c490b40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6313e458\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Esseine\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"center\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74eeb1d6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b36bd9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8326b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-Y2EBL9H.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3ee3a5d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75ddca35\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"85\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/two-young-woman-applying-moisturizing-cream-each-o-R9WC5FN.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ad40d5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d5a8252\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"89\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-at-a-spa-salon-PCXQB3L.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ecf2cab\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64c7db39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.686999999999998,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3219dd5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"93\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK-1.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6b1ffe1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.265999999999998,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39d6a7d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e9607d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"717c769b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b46bc67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7c8bea4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68d0dbac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ab5030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17743297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(429,109,'_elementor_edit_mode','builder'),(430,109,'_elementor_template_type','page'),(431,109,'_elementor_version','3.14.0'),(432,109,'_wp_page_template','elementor_header_footer'),(433,109,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(434,109,'_elementor_data','[{\"id\":\"30b3f40\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#D59999\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"660d4c10\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"272596a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lookbook\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"342d24cf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4846e840\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60d20078\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2be9c709\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.563000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ae5a172\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a674a07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"61\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":345.45299999999997},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-73,\"unit\":\"px\"},\"_offset_y\":{\"size\":-70,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":193.43799999999999},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":179.43799999999999},\"_offset_x_tablet\":{\"size\":-29,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-46,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-46,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-30,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e5e996a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.436999999999998,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"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},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13c06d8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Gallery\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50b89595\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56e41a34\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c490b40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6313e458\",\"elType\":\"widget\",\"settings\":{\"title\":\"Portfolio Esseine\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align_mobile\":\"center\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"74eeb1d6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b36bd9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8326b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"76\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-Y2EBL9H.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3ee3a5d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75ddca35\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"85\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/two-young-woman-applying-moisturizing-cream-each-o-R9WC5FN.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ad40d5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d5a8252\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"89\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-at-a-spa-salon-PCXQB3L.jpg\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ecf2cab\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64c7db39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.686999999999998,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3219dd5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"93\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK-1.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6b1ffe1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.265999999999998,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39d6a7d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e9607d0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"717c769b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b46bc67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7c8bea4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68d0dbac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6ab5030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17743297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":-24,\"vertical\":17,\"blur\":21,\"spread\":0,\"color\":\"rgba(232, 232, 232, 0.37)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(435,110,'_wp_attached_file','2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png'),(436,110,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:568;s:6:\"height\";i:508;s:4:\"file\";s:55:\"2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\";s:8:\"filesize\";i:24202;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"elements-rose-flower-logo-Q83854-2017-10-29-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20252;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"elements-rose-flower-logo-Q83854-2017-10-29-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10493;}}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:{}}}'),(437,106,'_elementor_page_assets','a:0:{}'),(438,106,'_eael_custom_js',''),(439,106,'envato_tk_source_kit','8'),(440,106,'envato_tk_source_index','10'),(441,110,'_elementor_source_image_hash','6985cd80f0de3b8927217f460bd731ac6840ae2c'),(442,107,'_elementor_source_image_hash','584069f32d990743472ea1442fec8e4fa56785db'),(443,111,'_wp_attached_file','2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg'),(444,111,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:859;s:6:\"height\";i:1000;s:4:\"file\";s:67:\"2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\";s:8:\"filesize\";i:132153;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-258x300.jpg\";s:5:\"width\";i:258;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28118;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18830;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:67:\"face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-768x894.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:894;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98977;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(445,112,'_wp_attached_file','2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png'),(446,111,'_elementor_source_image_hash','7d3e24119dc3ec440804f53f6c9c3ae5c533bb51'),(447,112,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:568;s:6:\"height\";i:508;s:4:\"file\";s:62:\"2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\";s:8:\"filesize\";i:100555;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25942;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"elements-wellness-logo-template-XG9DU8Z-2020-12-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11102;}}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:{}}}'),(448,112,'_elementor_source_image_hash','e3e403e26bdd98cfdb96be4d507a9f235fcf14c6'),(449,113,'_elementor_edit_mode','builder'),(450,113,'_elementor_template_type','page'),(451,113,'_elementor_version','3.14.0'),(452,114,'_wp_attached_file','2023/06/beautiful-female-receptionist-at-dental-clinic-2YCKZQV.jpg'),(453,114,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1501;s:6:\"height\";i:1000;s:4:\"file\";s:66:\"2023/06/beautiful-female-receptionist-at-dental-clinic-2YCKZQV.jpg\";s:8:\"filesize\";i:104817;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"beautiful-female-receptionist-at-dental-clinic-2YCKZQV-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18201;}s:5:\"large\";a:5:{s:4:\"file\";s:67:\"beautiful-female-receptionist-at-dental-clinic-2YCKZQV-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57314;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"beautiful-female-receptionist-at-dental-clinic-2YCKZQV-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14902;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:66:\"beautiful-female-receptionist-at-dental-clinic-2YCKZQV-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40093;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(454,114,'_elementor_source_image_hash','ad09efef8ee5e8dc2618702c4c08c305bb97d613'),(455,115,'_elementor_edit_mode','builder'),(456,115,'_elementor_template_type','page'),(457,115,'_elementor_version','3.14.0'),(458,113,'_wp_page_template','elementor_header_footer'),(459,113,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(460,113,'_elementor_data','[{\"id\":\"55c800c4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d112def\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b53b67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bead57f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d72ba15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"208f3c39\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16256879\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12b96556\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"e9c0971\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77f9a625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"407bd22b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47f0bae6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15b050c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d7a49e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d3f401d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165b69a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e0467fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"9cb797d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70ce408e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41f78357\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"502bf29e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44097c3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"34beb825\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"26e3e333\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75cb046d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a34c52a\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acadc0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"714de191\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"7b90b24e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_color\":\"#D59999\",\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e9d5361\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69e6201d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2462fac6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d361b4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70ed111d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6338b51\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cb36575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e13ad80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5eed82b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a8c3805\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1039b028\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"65b30f0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68f57d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"958835c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6922788f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24d78620\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"152753ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cedc574\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"77ced57\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54e559d8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c889887\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2baae351\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b40ea02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"30c9b25f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43d784f6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d15445e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20020bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"330908d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b50325a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f1443bb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b7e87a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52067457\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"381f875f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cea21d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2942c63a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"24083bfc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3cae627d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e8f9945\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(461,116,'_elementor_edit_mode','builder'),(462,116,'_elementor_template_type','page'),(463,116,'_elementor_version','3.14.0'),(464,116,'_wp_page_template','elementor_header_footer'),(465,116,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(466,116,'_elementor_data','[{\"id\":\"55c800c4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d112def\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b53b67d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3bead57f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d72ba15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"208f3c39\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16256879\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12b96556\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"e9c0971\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77f9a625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"407bd22b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47f0bae6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15b050c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d7a49e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d3f401d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165b69a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e0467fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"9cb797d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70ce408e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41f78357\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"502bf29e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44097c3b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"34beb825\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"26e3e333\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75cb046d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a34c52a\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2acadc0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"714de191\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"7b90b24e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_color\":\"#D59999\",\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e9d5361\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69e6201d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2462fac6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d361b4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70ed111d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6338b51\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cb36575\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e13ad80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5eed82b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a8c3805\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1039b028\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"65b30f0c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68f57d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"958835c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6922788f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"24d78620\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"152753ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cedc574\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"77ced57\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54e559d8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1c889887\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2baae351\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b40ea02\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"30c9b25f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43d784f6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d15445e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20020bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"330908d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b50325a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f1443bb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b7e87a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52067457\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"381f875f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cea21d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2942c63a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"24083bfc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3cae627d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e8f9945\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(467,113,'_elementor_page_assets','a:0:{}'),(468,113,'_eael_custom_js',''),(469,113,'envato_tk_source_kit','8'),(470,113,'envato_tk_source_index','5'),(471,117,'_wp_attached_file','2023/06/relaxing-spa-procedure-YWFXDHM.jpg'),(472,117,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:859;s:6:\"height\";i:1000;s:4:\"file\";s:42:\"2023/06/relaxing-spa-procedure-YWFXDHM.jpg\";s:8:\"filesize\";i:166665;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"relaxing-spa-procedure-YWFXDHM-258x300.jpg\";s:5:\"width\";i:258;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28622;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"relaxing-spa-procedure-YWFXDHM-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18532;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"relaxing-spa-procedure-YWFXDHM-768x894.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:894;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120655;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(473,117,'_elementor_source_image_hash','dfd09534a0e8d88aee2c89853d275cf7c6df716d'),(474,118,'_wp_attached_file','2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg'),(475,118,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:859;s:6:\"height\";i:1000;s:4:\"file\";s:70:\"2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\";s:8:\"filesize\";i:74951;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC-258x300.jpg\";s:5:\"width\";i:258;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19256;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14156;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC-768x894.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:894;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53852;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(476,118,'_elementor_source_image_hash','ba0a73ee028bf343a4385a18a95c56d23fab6ecd'),(477,119,'_elementor_edit_mode','builder'),(478,119,'_elementor_template_type','page'),(479,119,'_elementor_version','3.14.0'),(480,120,'_elementor_edit_mode','builder'),(481,120,'_elementor_template_type','page'),(482,120,'_elementor_version','3.14.0'),(483,119,'_wp_page_template','elementor_header_footer'),(484,119,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(485,119,'_elementor_data','[{\"id\":\"347988db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ed07556\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75c6de9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3619ba19\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64b299b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26e853fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-24,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-7,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-16,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e5fc0d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ab08b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"62739272\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":352},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-807.99699999999996,\"unit\":\"px\"},\"_offset_y\":{\"size\":-82.992999999999995,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5054e6a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nEsseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79d88a01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"44ae7125\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"411980eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"862977d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"number_color\":\"globals\\/colors?id=30e5369\",\"typography_number_typography\":\"globals\\/typography?id=ba88d83\",\"typography_title_typography\":\"globals\\/typography?id=1473676\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7eaa7928\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D59999\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a7156ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"__globals__\":{\"number_color\":\"globals\\/colors?id=30e5369\",\"typography_number_typography\":\"globals\\/typography?id=ba88d83\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2097fd13\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14d0fc03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29ac61e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why We Are Different\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d74b4c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dd32f4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#D59999\",\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":6,\"vertical\":7,\"blur\":17,\"spread\":0,\"color\":\"rgba(220, 220, 220, 0.25)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":13,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68848d00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"53\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30d52a85\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dermatologist Tested\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3296e9cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79123b92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D59999\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":13,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b9b9d83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11.png\"},\"width\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7934dd52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certificated Staff\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6744c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"76095880\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#D59999\",\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9879f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4148ac1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategic Place\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3b2ca3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"457ef55f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b469ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#D59999\",\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":6,\"vertical\":7,\"blur\":17,\"spread\":0,\"color\":\"rgba(220, 220, 220, 0.25)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":13,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38e7c1ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3cca83bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Experienced\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46d9d05e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e8590fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#D59999\",\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":6,\"vertical\":7,\"blur\":17,\"spread\":0,\"color\":\"rgba(220, 220, 220, 0.25)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d31d2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"87\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10.png\"},\"width\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1314ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comfortable\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77bfe401\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2c257d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#D59999\",\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"608df6ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12.png\"},\"width\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41a56b24\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"631962f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a3408c5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"11c98e8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d3dcb2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"6b5454c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43607699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"44057d49\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58a87210\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"736904a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60ef56bd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":260},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-204,\"unit\":\"px\"},\"_offset_y\":{\"size\":-42,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a57b046\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59d26854\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dbd5f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47485c97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3fbff749\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44eec6c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aadb60c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d63bc66\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"49f9c09f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ebde07b\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3ed6734\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"034935a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5c2d6cf9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31b1d220\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7406a7d8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7cff07d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"391c9e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6698305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29d3f25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ebde07b\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3ed6734\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"034935a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"7f438db5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4dcb48b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6634bb4c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea2e609\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"693eef8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"545d653b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1428037d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ebde07b\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3ed6734\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"034935a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(486,121,'_elementor_edit_mode','builder'),(487,121,'_elementor_template_type','page'),(488,121,'_elementor_version','3.14.0'),(489,121,'_wp_page_template','elementor_header_footer'),(490,121,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (491,121,'_elementor_data','[{\"id\":\"347988db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ed07556\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75c6de9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3619ba19\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64b299b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26e853fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-24,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-7,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-16,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e5fc0d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5ab08b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"62739272\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":352},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-807.99699999999996,\"unit\":\"px\"},\"_offset_y\":{\"size\":-82.992999999999995,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5054e6a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nEsseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79d88a01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"44ae7125\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"411980eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"862977d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"number_color\":\"globals\\/colors?id=30e5369\",\"typography_number_typography\":\"globals\\/typography?id=ba88d83\",\"typography_title_typography\":\"globals\\/typography?id=1473676\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7eaa7928\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"background_color\":\"#D59999\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a7156ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"__globals__\":{\"number_color\":\"globals\\/colors?id=30e5369\",\"typography_number_typography\":\"globals\\/typography?id=ba88d83\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2097fd13\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14d0fc03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29ac61e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why We Are Different\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d74b4c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dd32f4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#D59999\",\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":6,\"vertical\":7,\"blur\":17,\"spread\":0,\"color\":\"rgba(220, 220, 220, 0.25)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":13,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68848d00\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"53\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30d52a85\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dermatologist Tested\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3296e9cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"79123b92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D59999\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":13,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b9b9d83\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11.png\"},\"width\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7934dd52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certificated Staff\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6744c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"76095880\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#D59999\",\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9879f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4148ac1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategic Place\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3b2ca3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"457ef55f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b469ea8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#D59999\",\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":6,\"vertical\":7,\"blur\":17,\"spread\":0,\"color\":\"rgba(220, 220, 220, 0.25)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":13,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38e7c1ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3cca83bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Experienced\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46d9d05e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3e8590fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#D59999\",\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":6,\"vertical\":7,\"blur\":17,\"spread\":0,\"color\":\"rgba(220, 220, 220, 0.25)\"},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d31d2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"87\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10.png\"},\"width\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1314ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Comfortable\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77bfe401\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2c257d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_hover_color\":\"#D59999\",\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"box_shadow_hover_box_shadow_type\":\"yes\",\"box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"608df6ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"91\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12.png\"},\"width\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":23,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41a56b24\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trusted\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"631962f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a3408c5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"11c98e8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d3dcb2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"6b5454c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43607699\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"44057d49\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58a87210\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"736904a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60ef56bd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":260},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-204,\"unit\":\"px\"},\"_offset_y\":{\"size\":-42,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a57b046\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59d26854\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dbd5f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47485c97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3fbff749\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44eec6c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aadb60c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d63bc66\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"49f9c09f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ebde07b\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3ed6734\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"034935a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5c2d6cf9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31b1d220\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7406a7d8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7cff07d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"391c9e0b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6698305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29d3f25\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ebde07b\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3ed6734\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"034935a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"7f438db5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4dcb48b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6634bb4c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea2e609\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"693eef8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"545d653b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1428037d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"ebde07b\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3ed6734\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"034935a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(492,119,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(493,119,'_eael_custom_js',''),(494,119,'envato_tk_source_kit','8'),(495,119,'envato_tk_source_index','3'),(496,122,'_wp_attached_file','2023/06/beauty-treatment-in-spa-8KRHVMY.jpg'),(497,122,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:859;s:6:\"height\";i:1000;s:4:\"file\";s:43:\"2023/06/beauty-treatment-in-spa-8KRHVMY.jpg\";s:8:\"filesize\";i:143158;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"beauty-treatment-in-spa-8KRHVMY-258x300.jpg\";s:5:\"width\";i:258;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29150;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"beauty-treatment-in-spa-8KRHVMY-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19044;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"beauty-treatment-in-spa-8KRHVMY-768x894.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:894;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107589;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(498,123,'_wp_attached_file','2023/06/happy-young-african-american-smiling-woman-satisfi-DY6CFT2.jpg'),(499,123,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1501;s:6:\"height\";i:1000;s:4:\"file\";s:70:\"2023/06/happy-young-african-american-smiling-woman-satisfi-DY6CFT2.jpg\";s:8:\"filesize\";i:118121;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"happy-young-african-american-smiling-woman-satisfi-DY6CFT2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23487;}s:5:\"large\";a:5:{s:4:\"file\";s:71:\"happy-young-african-american-smiling-woman-satisfi-DY6CFT2-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71085;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"happy-young-african-american-smiling-woman-satisfi-DY6CFT2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19842;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"happy-young-african-american-smiling-woman-satisfi-DY6CFT2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50500;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(500,122,'_elementor_source_image_hash','b6667e878145f5ffc4164d066a3bceb089f5458b'),(501,123,'_elementor_source_image_hash','d3197f816d618f1cf6beec22cbfc544bbb44e324'),(502,124,'_elementor_edit_mode','builder'),(503,124,'_elementor_template_type','page'),(504,124,'_elementor_version','3.14.0'),(505,125,'_elementor_edit_mode','builder'),(506,125,'_elementor_template_type','page'),(507,125,'_elementor_version','3.14.0'),(508,124,'_wp_page_template','elementor_header_footer'),(509,124,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(510,124,'_elementor_data','[{\"id\":\"28770dc0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4710d35b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21d18d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f7053c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"122daa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54486e97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4cf627e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63458f50\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45d893c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794dfd8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6baf427e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3020e207\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68be7238\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d4c8f86\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3c8c8002\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"539e00fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f11dc20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33f65cd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2b760495\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26d10720\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bdebc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c6e8a75\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c9e2342\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d29ecde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3df1b07b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c6a3727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"608dab69\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21aaefdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7bc0b60a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f02c4b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":39.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3ecde204\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":38.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8f5155b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"4c7c363e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"414d9599\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a8e3b54\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68e3cb20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"742da4f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":206},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-153,\"unit\":\"px\"},\"_offset_y\":{\"size\":91,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":172},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":141},\"_offset_x_tablet\":{\"size\":-72,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-54,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-79,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1aef36e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"_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\":false},\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"345f0946\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a07cf54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-231\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"69f8123c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"693f8eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\\n\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d6f9257\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"188343cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"22c26d68\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"43c1838f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29443d8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23e7e4c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6943005a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"28884f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c08e0ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"19aa69ee\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"align\":\"left\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fd5d63c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d8fb298\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"479e5e91\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"globals\\/colors?id=233c4a0\"},\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(511,126,'_elementor_edit_mode','builder'),(512,126,'_elementor_template_type','page'),(513,126,'_elementor_version','3.14.0'),(514,126,'_wp_page_template','elementor_header_footer'),(515,126,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(516,126,'_elementor_data','[{\"id\":\"28770dc0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4710d35b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21d18d89\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8f7053c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"122daa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54486e97\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4cf627e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63458f50\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45d893c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"794dfd8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6baf427e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3020e207\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68be7238\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-75\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d4c8f86\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3c8c8002\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"539e00fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f11dc20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33f65cd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2b760495\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26d10720\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bdebc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c6e8a75\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c9e2342\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3d29ecde\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3df1b07b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c6a3727\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"608dab69\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21aaefdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7bc0b60a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f02c4b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":39.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3ecde204\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":38.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8f5155b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"4c7c363e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"414d9599\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a8e3b54\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-20\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68e3cb20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"742da4f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":206},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-153,\"unit\":\"px\"},\"_offset_y\":{\"size\":91,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":172},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":141},\"_offset_x_tablet\":{\"size\":-72,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-54,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":37,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-79,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1aef36e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"_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\":false},\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"345f0946\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a07cf54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-231\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"69f8123c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"693f8eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\\n\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d6f9257\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"188343cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"22c26d68\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"43c1838f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29443d8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23e7e4c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6943005a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"28884f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c08e0ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"19aa69ee\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"align\":\"left\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fd5d63c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d8fb298\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"479e5e91\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"globals\\/colors?id=233c4a0\"},\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(517,124,'_elementor_page_assets','a:0:{}'),(518,124,'_eael_custom_js',''),(519,124,'_eael_widget_elements','a:1:{s:15:\"image-accordion\";s:15:\"image-accordion\";}'),(520,124,'envato_tk_source_kit','8'),(521,124,'envato_tk_source_index','7'),(522,127,'_wp_attached_file','2023/06/cheerful-female-cosmetologist-standing-against-whi-3VX78XN.jpg'),(523,127,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1501;s:6:\"height\";i:1000;s:4:\"file\";s:70:\"2023/06/cheerful-female-cosmetologist-standing-against-whi-3VX78XN.jpg\";s:8:\"filesize\";i:101445;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"cheerful-female-cosmetologist-standing-against-whi-3VX78XN-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18004;}s:5:\"large\";a:5:{s:4:\"file\";s:71:\"cheerful-female-cosmetologist-standing-against-whi-3VX78XN-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54628;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"cheerful-female-cosmetologist-standing-against-whi-3VX78XN-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15112;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"cheerful-female-cosmetologist-standing-against-whi-3VX78XN-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38950;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(524,127,'_elementor_source_image_hash','f7542f74c4dc2aa4be4a9bd8bbce9768d2eeb988'),(525,128,'_wp_attached_file','2023/06/elements-eye-logo-VXUKND-2018-11-20-1.png'),(526,128,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:568;s:6:\"height\";i:508;s:4:\"file\";s:49:\"2023/06/elements-eye-logo-VXUKND-2018-11-20-1.png\";s:8:\"filesize\";i:26400;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"elements-eye-logo-VXUKND-2018-11-20-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11574;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"elements-eye-logo-VXUKND-2018-11-20-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5582;}}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:{}}}'),(527,128,'_elementor_source_image_hash','f64ec2ca2fa0fa81ab64758b2807188709a33560'),(528,129,'_wp_attached_file','2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-1.png'),(529,129,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:568;s:6:\"height\";i:508;s:4:\"file\";s:67:\"2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-1.png\";s:8:\"filesize\";i:54366;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"elements-relax-resort-logo-template-GF6XU7-2019-02-17-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21167;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"elements-relax-resort-logo-template-GF6XU7-2019-02-17-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9210;}}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:{}}}'),(530,129,'_elementor_source_image_hash','6a84e9f0a55e828b01caa5584c2e2c879ecf6020'),(531,130,'_wp_attached_file','2023/06/elements-rose-flower-logo-Q83854-2017-10-29-1.png'),(532,130,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:568;s:6:\"height\";i:508;s:4:\"file\";s:57:\"2023/06/elements-rose-flower-logo-Q83854-2017-10-29-1.png\";s:8:\"filesize\";i:20639;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"elements-rose-flower-logo-Q83854-2017-10-29-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14122;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"elements-rose-flower-logo-Q83854-2017-10-29-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6986;}}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:{}}}'),(533,130,'_elementor_source_image_hash','7592d50c06e5693836c533ac4d3e29135ab669ed'),(534,131,'_wp_attached_file','2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-2.png'),(535,131,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:568;s:6:\"height\";i:508;s:4:\"file\";s:64:\"2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-2.png\";s:8:\"filesize\";i:28619;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"elements-wellness-logo-template-XG9DU8Z-2020-12-11-2-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10222;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"elements-wellness-logo-template-XG9DU8Z-2020-12-11-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4586;}}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:{}}}'),(536,131,'_elementor_source_image_hash','9e27f689e2ad988395fe8c238c08c7adbd0a55be'),(537,132,'_elementor_edit_mode','builder'),(538,132,'_elementor_template_type','section'),(539,132,'_elementor_version','3.14.0'),(540,133,'_elementor_edit_mode','builder'),(541,133,'_elementor_template_type','section'),(542,133,'_elementor_version','3.14.0'),(543,132,'_wp_page_template','elementor_header_footer'),(544,132,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(545,132,'_elementor_data','[{\"id\":\"55e3b91d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d0c2bed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1436c81b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13826065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43d7ac3a\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10824c19\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ce73ad3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2161f0be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64fa5795\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"60cb406b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c5a903a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48927f2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f72484e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23075497\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3cbb7cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"518f810a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ffef3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e4dafee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"16e0a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"269697d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"60b25b16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16397fe8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f977de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27c82b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67e9ed23\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62291a5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30291151\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fdbf38c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f6ec6e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"43bdbe4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66f2947b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4d8b9e34\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"eab654f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"38783a55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"760eafc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2adb7e97\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7bba95e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"350b567c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7334c40d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"459ed4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24e1eacd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ac43976\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78ae1e5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aaab355\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69f71461\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e43de5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b8450cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e1f8bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4710c263\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8d0930c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"69e09df5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67ce5814\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3656654b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"520be340\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"475220c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6739bc0e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d7f0c95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"480ea33f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"59b7d951\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"610ad6f0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44d9459b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ced37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"410d1864\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bfbc578\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1952810d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46fc95f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26583833\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"69cb06a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"496dc4b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e3c1b79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cd718fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b53af9\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e7f1965\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"50eaa10e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"633ee18d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16199701\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37a883fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56a4e7b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"928009a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e2ffb8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37031ea2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16dba59f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c4ff309\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4910a52e\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"436af22d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3eed5e4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7497d65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6de9ce46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4fe2b1de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ccb2235\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a47c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dad59d2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"6cf5906c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f99b58d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"777e15c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45678f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15de0123\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6cb7584e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"678c32f7\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"752e4aa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"575a4083\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"646c216e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e3e0c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12fff500\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7718f565\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54683888\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b54ce88\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15a6929d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ceb4b74\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"508883b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fdc7cf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f0643d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30be9400\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5fa93e63\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"26c959ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"222afe0c\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbfd8d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36f192e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cdaab0\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"globals\\/colors?id=233c4a0\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(546,134,'_elementor_edit_mode','builder'),(547,134,'_elementor_template_type','section'),(548,134,'_elementor_version','3.14.0'),(549,134,'_wp_page_template','default'),(550,134,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(551,134,'_elementor_data','[{\"id\":\"55e3b91d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d0c2bed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1436c81b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13826065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43d7ac3a\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10824c19\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5ce73ad3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2161f0be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64fa5795\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"60cb406b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c5a903a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48927f2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f72484e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23075497\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3cbb7cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"518f810a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ffef3db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e4dafee\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"16e0a134\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"269697d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"60b25b16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16397fe8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f977de2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27c82b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67e9ed23\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62291a5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30291151\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fdbf38c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f6ec6e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"43bdbe4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"66f2947b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4d8b9e34\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"eab654f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"38783a55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"760eafc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2adb7e97\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7bba95e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"350b567c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"7334c40d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"459ed4fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"24e1eacd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ac43976\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78ae1e5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7aaab355\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69f71461\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e43de5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b8450cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e1f8bab\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4710c263\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8d0930c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"69e09df5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67ce5814\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3656654b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"520be340\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"475220c2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6739bc0e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d7f0c95\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"480ea33f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"59b7d951\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"610ad6f0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44d9459b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6ced37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"410d1864\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bfbc578\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1952810d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46fc95f1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26583833\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"69cb06a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"496dc4b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e3c1b79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cd718fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b53af9\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e7f1965\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"50eaa10e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"633ee18d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16199701\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37a883fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56a4e7b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"928009a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e2ffb8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37031ea2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16dba59f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c4ff309\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4910a52e\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"436af22d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3eed5e4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7497d65d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6de9ce46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4fe2b1de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ccb2235\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32a47c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dad59d2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"6cf5906c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f99b58d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"777e15c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45678f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15de0123\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6cb7584e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"678c32f7\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"752e4aa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"575a4083\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"646c216e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e3e0c1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12fff500\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7718f565\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54683888\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5b54ce88\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15a6929d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ceb4b74\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"508883b9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fdc7cf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f0643d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30be9400\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5fa93e63\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"26c959ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"222afe0c\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbfd8d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36f192e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cdaab0\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"globals\\/colors?id=233c4a0\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(552,132,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(553,132,'_eael_custom_js',''),(554,132,'_eael_widget_elements','a:1:{s:15:\"image-accordion\";s:15:\"image-accordion\";}'),(555,132,'envato_tk_source_kit','8'),(556,132,'envato_tk_source_index','1'),(557,135,'_elementor_edit_mode','builder'),(558,135,'_elementor_template_type','page'),(559,135,'_elementor_version','3.14.0'),(560,136,'_elementor_edit_mode','builder'),(561,136,'_elementor_template_type','page'),(562,136,'_elementor_version','3.14.0'),(563,135,'_wp_page_template','elementor_header_footer'),(564,135,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(565,135,'_elementor_data','[{\"id\":\"1ad6376c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"645775c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fe65cad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3de9595e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b57864e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.052999999999997,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63d00934\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f7cae7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-at-spring-park-P4PZ4CT.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-271\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-177\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-203\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c53d0df\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"f3c5e7e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"0e90401\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"206f65b\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"e4f6780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.947000000000003,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4205eb87\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":140},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-461,\"unit\":\"px\"},\"_offset_y\":{\"size\":-45,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4acb9578\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":67},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-66,\"unit\":\"px\"},\"_offset_y\":{\"size\":244,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-68,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":239,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":132,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-109,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79ece1e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sovia Evelyn\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"left\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c7bce39\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Director Essiene<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=4bccb1c\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d03624\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"typography_font_family\":\"Sarabun\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"688e4ec\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78dff92e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cb12be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bcc538f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a171933\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63062010\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"38930a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"359b5c62\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b9023c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"text_color\":\"#5E0826\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"238fd970\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2aeef9ef\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"342e54a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"eb68e52\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1c51278\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"6ef6fab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a6e7d04\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"504e7b22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c684743\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39a0c9ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"text_color\":\"#5E0826\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d9ecae1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"49472794\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"342e54a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"eb68e52\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1c51278\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"42753d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10af785c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d67055d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2cfa762b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ecaf97a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"text_color\":\"#5E0826\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"240d105a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33268e7c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"342e54a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"eb68e52\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1c51278\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"40eaa911\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ff1fcd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67f669b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26a9c0d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-female-receptionist-at-dental-clinic-2YCKZQV.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d8f03dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bcf8923\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"text_color\":\"#5E0826\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d4047cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2baf3efc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"342e54a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"eb68e52\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1c51278\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"774febfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75b4d93c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1938c4b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"123\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-young-african-american-smiling-woman-satisfi-DY6CFT2.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d910109\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7525b011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"text_color\":\"#5E0826\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6eda7747\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"600725e5\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"342e54a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"eb68e52\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1c51278\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5e3d0bae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4de44104\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"202306c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"127\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/cheerful-female-cosmetologist-standing-against-whi-3VX78XN.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e3cadb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"633e186f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"text_color\":\"#5E0826\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4176f5fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77a1aa01\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"342e54a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"eb68e52\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1c51278\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4738b8cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2fdb380e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28047f1a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"128\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20-1.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2ed6a01a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a2dae97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17-1.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"16eb1a48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16634435\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29-1.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"342a4a08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b8712c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"131\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11-2.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1adfc1cd\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7584a3e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"431fbdcb\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"globals\\/colors?id=233c4a0\"},\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(566,137,'_elementor_edit_mode','builder'),(567,137,'_elementor_template_type','page'),(568,137,'_elementor_version','3.14.0'),(569,137,'_wp_page_template','elementor_header_footer'),(570,137,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(571,137,'_elementor_data','[{\"id\":\"1ad6376c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"645775c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fe65cad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3de9595e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b57864e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.052999999999997,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63d00934\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f7cae7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"26\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-at-spring-park-P4PZ4CT.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-271\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-177\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-203\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c53d0df\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"f3c5e7e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"0e90401\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"206f65b\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false},{\"id\":\"e4f6780\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.947000000000003,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4205eb87\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":140},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-461,\"unit\":\"px\"},\"_offset_y\":{\"size\":-45,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4acb9578\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":67},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-66,\"unit\":\"px\"},\"_offset_y\":{\"size\":244,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-68,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":239,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":132,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-109,\"unit\":\"px\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79ece1e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sovia Evelyn\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"left\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c7bce39\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Director Essiene<\\/p>\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=4bccb1c\"},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d03624\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"typography_font_family\":\"Sarabun\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"688e4ec\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78dff92e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cb12be3\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bcc538f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a171933\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63062010\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"38930a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"359b5c62\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b9023c8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"text_color\":\"#5E0826\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"238fd970\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2aeef9ef\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"342e54a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"eb68e52\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1c51278\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"6ef6fab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a6e7d04\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"504e7b22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c684743\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39a0c9ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"text_color\":\"#5E0826\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d9ecae1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"49472794\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"342e54a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"eb68e52\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1c51278\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"42753d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10af785c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6d67055d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2cfa762b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ecaf97a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"text_color\":\"#5E0826\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"240d105a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"33268e7c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"342e54a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"eb68e52\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1c51278\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"40eaa911\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7ff1fcd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67f669b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26a9c0d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-female-receptionist-at-dental-clinic-2YCKZQV.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d8f03dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bcf8923\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"text_color\":\"#5E0826\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d4047cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2baf3efc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"342e54a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"eb68e52\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1c51278\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"774febfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"75b4d93c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1938c4b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"123\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-young-african-american-smiling-woman-satisfi-DY6CFT2.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d910109\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7525b011\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"text_color\":\"#5E0826\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6eda7747\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"600725e5\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"342e54a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"eb68e52\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1c51278\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5e3d0bae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4de44104\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"202306c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"127\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/cheerful-female-cosmetologist-standing-against-whi-3VX78XN.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-150\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e3cadb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"633e186f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"text_color\":\"#5E0826\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4176f5fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77a1aa01\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"342e54a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"eb68e52\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"1c51278\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4738b8cb\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2fdb380e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28047f1a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"128\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20-1.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2ed6a01a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a2dae97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17-1.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"16eb1a48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16634435\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"130\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29-1.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"342a4a08\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b8712c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"131\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11-2.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1adfc1cd\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7584a3e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"431fbdcb\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\",\"eael_accordion_is_active\":\"\",\"eael_accordion_enable_title_link\":\"yes\",\"eael_accordion_title_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"globals\\/colors?id=233c4a0\"},\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(572,135,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(573,135,'_eael_custom_js',''),(574,135,'_eael_widget_elements','a:1:{s:15:\"image-accordion\";s:15:\"image-accordion\";}'),(575,135,'envato_tk_source_kit','8'),(576,135,'envato_tk_source_index','2'),(577,138,'_edit_lock','1687337871:1'),(578,139,'_edit_lock','1694526179:1'),(579,139,'_wp_page_template','elementor_header_footer'),(580,139,'_elementor_edit_mode','builder'),(581,139,'_elementor_template_type','wp-page'),(582,139,'_elementor_version','3.14.0'),(584,141,'_edit_last','1'),(585,141,'_edit_lock','1694524322:1'),(586,141,'_wp_page_template','elementor_canvas'),(587,141,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(588,141,'ehf_target_exclude_locations','a:0:{}'),(589,141,'ehf_target_user_roles','a:1:{i:0;s:3:\"all\";}'),(590,141,'ehf_template_type','type_header'),(591,141,'_elementor_edit_mode','builder'),(592,141,'_elementor_template_type','wp-post'),(593,141,'_elementor_version','3.15.3'),(595,141,'ekit_post_views_count','9'),(597,63,'ekit_post_views_count','1'),(599,70,'ekit_post_views_count','1'),(612,145,'_wp_page_template','elementor_header_footer'),(613,145,'_elementor_edit_mode','builder'),(614,145,'_elementor_template_type','wp-post'),(615,145,'_elementor_version','3.14.0'),(617,146,'_wp_page_template','elementor_header_footer'),(618,146,'_elementor_edit_mode','builder'),(619,146,'_elementor_template_type','wp-post'),(620,146,'_elementor_version','3.14.0'),(622,141,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(623,141,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":276,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/noha-1.webp\",\"alt\":\"at home by noha International\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"\",\"color_menu_item_active\":\"\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"\",\"color_dropdown_item_hover\":\"\",\"color_dropdown_item\":\"\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"\",\"toggle_color\":\"\"},\"resp_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Marcellus\",\"menu_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#EF529D\",\"color_menu_item_hover\":\"#D59999\",\"color_menu_item_active\":\"#D59999\",\"color_dropdown_item\":\"#EF529D\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#D59999\",\"color_dropdown_item_active\":\"#D59999\",\"divider_border_color\":\"#5E0826\",\"toggle_color\":\"#EF529D\",\"all_text_color\":\"#FFFFFF\",\"all_background_color_color\":\"#EF529D\",\"all_border_color\":\"#D59999\",\"all_hover_color\":\"#EF529D\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_border_hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(624,147,'_wp_page_template','elementor_canvas'),(625,147,'_elementor_edit_mode','builder'),(626,147,'_elementor_template_type','wp-post'),(627,147,'_elementor_version','3.14.0'),(629,147,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(630,147,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":144,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-Logo-01.png\",\"alt\":\"Noha International\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=secondary\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"globals\\/colors?id=secondary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(631,141,'_elementor_page_assets','a:0:{}'),(632,141,'_eael_custom_js',''),(633,148,'_edit_last','1'),(634,148,'_edit_lock','1694583203:1'),(635,148,'_wp_page_template','elementor_canvas'),(636,148,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(637,148,'ehf_target_exclude_locations','a:0:{}'),(638,148,'ehf_target_user_roles','a:1:{i:0;s:3:\"all\";}'),(639,148,'ehf_template_type','type_footer'),(640,148,'_elementor_edit_mode','builder'),(641,148,'_elementor_template_type','wp-post'),(642,148,'_elementor_version','3.16.1'),(645,148,'ekit_post_views_count','6'),(655,151,'_wp_attached_file','2023/06/Noha-International.png'),(656,151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4154;s:6:\"height\";i:1756;s:4:\"file\";s:30:\"2023/06/Noha-International.png\";s:8:\"filesize\";i:74106;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Noha-International-300x127.png\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8065;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Noha-International-1024x433.png\";s:5:\"width\";i:1024;s:6:\"height\";i:433;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32765;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Noha-International-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5943;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Noha-International-768x325.png\";s:5:\"width\";i:768;s:6:\"height\";i:325;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23637;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"Noha-International-1536x649.png\";s:5:\"width\";i:1536;s:6:\"height\";i:649;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51809;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:31:\"Noha-International-2048x866.png\";s:5:\"width\";i:2048;s:6:\"height\";i:866;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70973;}}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:{}}}'),(657,151,'_wp_attachment_image_alt','Noha International'),(658,152,'_wp_page_template','elementor_header_footer'),(659,152,'_elementor_edit_mode','builder'),(660,152,'_elementor_template_type','wp-post'),(661,152,'_elementor_version','3.14.0'),(662,153,'_wp_page_template','elementor_header_footer'),(663,153,'_elementor_edit_mode','builder'),(664,153,'_elementor_template_type','wp-post'),(665,153,'_elementor_version','3.14.0'),(666,148,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(667,148,'_elementor_data','[{\"id\":\"5515e76\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"e7f832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3cde1e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"f1fd7c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e651ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":281,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/at-home-noha-international.webp\",\"alt\":\"at home noha international\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"139517ff\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"802b9f0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"0afbf97\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ec310cc\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.29999999999999999,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"},\"align_mobile\":\"center\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_primary_color\":\"#EF529D\",\"hover_primary_color\":\"#FFFFFF\",\"hover_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"268ef033\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22.527000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57eca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a420727\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"70685153\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20.817,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b70d719\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f4b71fa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f7f0e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":31.655999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"17bd195a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78218c72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"57d6461\"},{\"text\":\"+375(76) 878-76-76<br>contact@esseine.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"4baaf7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63719ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2023 Noha International \\u2022 All Rights Reserved\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=897f75f\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(668,154,'_wp_page_template','elementor_canvas'),(669,154,'_elementor_edit_mode','builder'),(670,154,'_elementor_template_type','wp-post'),(671,154,'_elementor_version','3.14.0'),(672,154,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(673,154,'_elementor_data','[{\"id\":\"5515e76\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7f832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3cde1e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"f1fd7c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e651ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":151,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International.png\",\"alt\":\"Noha International\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"139517ff\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"802b9f0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"0afbf97\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ec310cc\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.29999999999999999,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\"},\"align_mobile\":\"center\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"268ef033\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22.527000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57eca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a420727\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"70685153\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20.817,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b70d719\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f4b71fa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f7f0e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":31.655999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"17bd195a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78218c72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Riverside Building, County Hall, London SE1 7PB, United Kingdom\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"57d6461\"},{\"text\":\"+375(76) 878-76-76<br>contact@esseine.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"4baaf7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63719ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2023 Noha International \\u2022 All Rights Reserved\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=897f75f\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(674,148,'_elementor_page_assets','a:0:{}'),(675,148,'_eael_custom_js',''),(677,155,'_wp_attached_file','2023/06/Noha-International-1.png'),(678,155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4160;s:6:\"height\";i:1764;s:4:\"file\";s:32:\"2023/06/Noha-International-1.png\";s:8:\"filesize\";i:73302;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Noha-International-1-300x127.png\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11520;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"Noha-International-1-1024x434.png\";s:5:\"width\";i:1024;s:6:\"height\";i:434;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47817;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Noha-International-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8710;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Noha-International-1-768x326.png\";s:5:\"width\";i:768;s:6:\"height\";i:326;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34360;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"Noha-International-1-1536x651.png\";s:5:\"width\";i:1536;s:6:\"height\";i:651;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75313;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:33:\"Noha-International-1-2048x868.png\";s:5:\"width\";i:2048;s:6:\"height\";i:868;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102595;}}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:{}}}'),(679,156,'_wp_page_template','elementor_canvas'),(680,156,'_elementor_edit_mode','builder'),(681,156,'_elementor_template_type','wp-post'),(682,156,'_elementor_version','3.14.0'),(683,156,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(684,156,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":144,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-Logo-01.png\",\"alt\":\"Noha International\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=secondary\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"globals\\/colors?id=secondary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(685,156,'_elementor_page_assets','a:0:{}'),(687,157,'_wp_page_template','elementor_canvas'),(688,157,'_elementor_edit_mode','builder'),(689,157,'_elementor_template_type','wp-post'),(690,157,'_elementor_version','3.14.0'),(691,157,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(692,157,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":144,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-Logo-01.png\",\"alt\":\"Noha International\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=secondary\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"globals\\/colors?id=secondary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(693,157,'_elementor_page_assets','a:0:{}'),(695,158,'_wp_page_template','elementor_canvas'),(696,158,'_elementor_edit_mode','builder'),(697,158,'_elementor_template_type','wp-post'),(698,158,'_elementor_version','3.14.0'),(699,158,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(700,158,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=secondary\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"globals\\/colors?id=secondary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(701,158,'_elementor_page_assets','a:0:{}'),(711,160,'_wp_page_template','elementor_header_footer'),(712,160,'_elementor_edit_mode','builder'),(713,160,'_elementor_template_type','wp-page'),(714,160,'_elementor_version','3.14.0'),(715,161,'_wp_page_template','elementor_header_footer'),(716,161,'_elementor_edit_mode','builder'),(717,161,'_elementor_template_type','wp-page'),(718,161,'_elementor_version','3.14.0'),(719,139,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(720,139,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":229,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-4-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":237,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-5-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":238,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-02-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":239,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-03-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":230,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-3-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"eael_accordion_img_overlay_color\":\"#D5999940\",\"eael_accordion_img_hover_color\":\"#EF529D52\",\"eael_accordion_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"eael_accordion_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(721,162,'_wp_page_template','elementor_header_footer'),(722,162,'_elementor_edit_mode','builder'),(723,162,'_elementor_template_type','wp-page'),(724,162,'_elementor_version','3.14.0'),(725,162,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(726,162,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"globals\\/colors?id=233c4a0\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(727,139,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(728,139,'_eael_custom_js',''),(729,139,'_eael_widget_elements','a:1:{s:15:\"image-accordion\";s:15:\"image-accordion\";}'),(731,163,'_edit_lock','1687339314:1'),(732,163,'_wp_page_template','elementor_header_footer'),(733,9,'_edit_lock','1687339588:1'),(734,165,'_wp_attached_file','2023/06/Noha-International-Icon.png'),(735,165,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1236;s:6:\"height\";i:1236;s:4:\"file\";s:35:\"2023/06/Noha-International-Icon.png\";s:8:\"filesize\";i:25847;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(736,166,'_elementor_edit_mode','builder'),(737,166,'_elementor_template_type','kit'),(738,166,'_elementor_version','3.14.0'),(739,166,'_wp_page_template','default'),(740,166,'_elementor_page_settings','a:77:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#5E0826\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#D59999\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#FFF0F3\";}}s:13:\"custom_colors\";a:5:{i:0;a:3:{s:3:\"_id\";s:7:\"30e5369\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1;a:3:{s:3:\"_id\";s:7:\"b82d03e\";s:5:\"title\";s:10:\"WhiteTrans\";s:5:\"color\";s:9:\"#FFFFFF82\";}i:2;a:3:{s:5:\"title\";s:11:\"transparant\";s:3:\"_id\";s:7:\"cfd96a7\";s:5:\"color\";s:9:\"#02010100\";}i:3;a:3:{s:3:\"_id\";s:7:\"158c32f\";s:5:\"title\";s:10:\"transpink1\";s:5:\"color\";s:9:\"#D5999940\";}i:4;a:3:{s:3:\"_id\";s:7:\"233c4a0\";s:5:\"title\";s:10:\"transpink2\";s:5:\"color\";s:9:\"#D599999E\";}}s:17:\"system_typography\";a:4:{i:0;a:8:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:2:\"H1\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:2:\"H2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.2000000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:2;a:7:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Sarabun\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}}i:3;a:8:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:2:\"H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2549999999999999;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:9:{i:0;a:6:{s:3:\"_id\";s:7:\"d6ab604\";s:5:\"title\";s:2:\"H4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";}i:1;a:9:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"8a8bed2\";s:5:\"title\";s:2:\"H5\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:2;a:6:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:3:\"_id\";s:7:\"c3b6dfb\";s:5:\"title\";s:2:\"H6\";}i:3;a:6:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.7000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:3:\"_id\";s:7:\"ba88d83\";s:5:\"title\";s:6:\"Number\";}i:4;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"aa5b00b\";s:5:\"title\";s:6:\"price2\";s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.3999999999999999;s:5:\"sizes\";a:0:{}}}i:5;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"897f75f\";s:5:\"title\";s:2:\"cr\";}i:6;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"1473676\";s:5:\"title\";s:5:\"about\";}i:7;a:7:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Sarabun\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:3:\"_id\";s:7:\"4bccb1c\";s:5:\"title\";s:4:\"Team\";}i:8;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:9:\"Marcellus\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:10;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:10;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:8.5999999999999996;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"46a8498\";s:5:\"title\";s:4:\"4040\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:11:\"__globals__\";a:21:{s:8:\"h1_color\";s:0:\"\";s:24:\"h1_typography_typography\";s:0:\"\";s:8:\"h2_color\";s:0:\"\";s:24:\"h2_typography_typography\";s:0:\"\";s:8:\"h3_color\";s:0:\"\";s:24:\"h3_typography_typography\";s:0:\"\";s:8:\"h4_color\";s:0:\"\";s:24:\"h4_typography_typography\";s:0:\"\";s:28:\"button_typography_typography\";s:26:\"globals/typography?id=text\";s:17:\"button_text_color\";s:25:\"globals/colors?id=30e5369\";s:23:\"button_background_color\";s:27:\"globals/colors?id=secondary\";s:19:\"button_border_color\";s:27:\"globals/colors?id=secondary\";s:23:\"button_hover_text_color\";s:27:\"globals/colors?id=secondary\";s:29:\"button_hover_background_color\";s:25:\"globals/colors?id=cfd96a7\";s:25:\"button_hover_border_color\";s:27:\"globals/colors?id=secondary\";s:26:\"body_typography_typography\";s:0:\"\";s:10:\"body_color\";s:0:\"\";s:8:\"h5_color\";s:0:\"\";s:24:\"h5_typography_typography\";s:0:\"\";s:24:\"h6_typography_typography\";s:0:\"\";s:8:\"h6_color\";s:0:\"\";}s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"25\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"25\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:1;}s:26:\"button_hover_border_border\";s:5:\"solid\";s:25:\"button_hover_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:26:\"button_hover_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"25\";s:5:\"right\";s:2:\"25\";s:6:\"bottom\";s:2:\"25\";s:4:\"left\";s:2:\"25\";s:8:\"isLinked\";b:1;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:10:\"body_color\";s:7:\"#7A7A7A\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:7:\"Sarabun\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:8:\"h1_color\";s:7:\"#5E0826\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:9:\"Marcellus\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"500\";s:8:\"h2_color\";s:7:\"#5E0826\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:9:\"Marcellus\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.2000000000000002;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"500\";s:8:\"h3_color\";s:7:\"#5E0826\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:9:\"Marcellus\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"500\";s:8:\"h4_color\";s:7:\"#5E0826\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:9:\"Marcellus\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"500\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:8:\"h5_color\";s:7:\"#5E0826\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:9:\"Marcellus\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"500\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#5E0826\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:9:\"Marcellus\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"500\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:7:\"Sarabun\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"400\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#D59999\";s:19:\"button_border_color\";s:7:\"#D59999\";s:23:\"button_hover_text_color\";s:7:\"#D59999\";s:29:\"button_hover_background_color\";s:9:\"#02010100\";s:25:\"button_hover_border_color\";s:7:\"#D59999\";s:32:\"body_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.2999999999999998;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.2549999999999999;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:9:\"site_name\";s:18:\"Noha International\";}'),(741,166,'_elementor_data','[]'),(742,166,'_elementor_page_assets','a:0:{}'),(744,167,'_edit_lock','1694799812:1'),(745,167,'_wp_page_template','elementor_header_footer'),(759,170,'_edit_lock','1687339593:1'),(760,170,'_wp_page_template','elementor_header_footer'),(761,172,'_menu_item_type','post_type'),(762,172,'_menu_item_menu_item_parent','0'),(763,172,'_menu_item_object_id','139'),(764,172,'_menu_item_object','page'),(765,172,'_menu_item_target',''),(766,172,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(767,172,'_menu_item_xfn',''),(768,172,'_menu_item_url',''),(770,173,'_menu_item_type','post_type'),(771,173,'_menu_item_menu_item_parent','0'),(772,173,'_menu_item_object_id','163'),(773,173,'_menu_item_object','page'),(774,173,'_menu_item_target',''),(775,173,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(776,173,'_menu_item_xfn',''),(777,173,'_menu_item_url',''),(779,174,'_menu_item_type','post_type'),(780,174,'_menu_item_menu_item_parent','0'),(781,174,'_menu_item_object_id','170'),(782,174,'_menu_item_object','page'),(783,174,'_menu_item_target',''),(784,174,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(785,174,'_menu_item_xfn',''),(786,174,'_menu_item_url',''),(788,175,'_menu_item_type','post_type'),(789,175,'_menu_item_menu_item_parent','0'),(790,175,'_menu_item_object_id','167'),(791,175,'_menu_item_object','page'),(792,175,'_menu_item_target',''),(793,175,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(794,175,'_menu_item_xfn',''),(795,175,'_menu_item_url',''),(836,183,'_wp_page_template','elementor_canvas'),(837,183,'_elementor_edit_mode','builder'),(838,183,'_elementor_template_type','wp-post'),(839,183,'_elementor_version','3.14.0'),(840,183,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(841,183,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=secondary\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"globals\\/colors?id=secondary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(842,183,'_elementor_page_assets','a:0:{}'),(844,184,'_wp_page_template','elementor_canvas'),(845,184,'_elementor_edit_mode','builder'),(846,184,'_elementor_template_type','wp-post'),(847,184,'_elementor_version','3.14.0'),(848,184,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(849,184,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=secondary\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"globals\\/colors?id=secondary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(850,184,'_elementor_page_assets','a:0:{}'),(852,185,'_wp_page_template','elementor_canvas'),(853,185,'_elementor_edit_mode','builder'),(854,185,'_elementor_template_type','wp-post'),(855,185,'_elementor_version','3.14.0'),(856,185,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(857,185,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=secondary\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"globals\\/colors?id=secondary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f9cb01f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"653de85e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5b467939\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Logo-Esseine-White.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"10185c0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5356d617\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=30e5369\",\"color_menu_item_active\":\"globals\\/colors?id=accent\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=30e5369\",\"all_text_color\":\"globals\\/colors?id=primary\",\"all_border_color\":\"globals\\/colors?id=30e5369\",\"all_background_hover_color_color\":\"globals\\/colors?id=cfd96a7\",\"all_hover_color\":\"globals\\/colors?id=30e5369\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=30e5369\"},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Marcellus\",\"menu_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_active\":\"#D59999\",\"color_dropdown_item\":\"#5E0826\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#D59999\",\"all_text_color\":\"#5E0826\",\"all_border_color\":\"#FFFFFF\",\"all_hover_color\":\"#FFFFFF\",\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(858,185,'_elementor_page_assets','a:0:{}'),(862,186,'_wp_page_template','elementor_canvas'),(863,186,'_elementor_edit_mode','builder'),(864,186,'_elementor_template_type','wp-post'),(865,186,'_elementor_version','3.14.0'),(866,186,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(867,186,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=secondary\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"globals\\/colors?id=secondary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f9cb01f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"653de85e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5b467939\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Logo-Esseine-White.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"10185c0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5356d617\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=30e5369\",\"color_menu_item_active\":\"globals\\/colors?id=accent\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=30e5369\",\"all_text_color\":\"globals\\/colors?id=primary\",\"all_border_color\":\"globals\\/colors?id=30e5369\",\"all_background_hover_color_color\":\"globals\\/colors?id=cfd96a7\",\"all_hover_color\":\"globals\\/colors?id=30e5369\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=30e5369\"},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Marcellus\",\"menu_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_active\":\"#D59999\",\"color_dropdown_item\":\"#5E0826\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#D59999\",\"all_text_color\":\"#5E0826\",\"all_border_color\":\"#FFFFFF\",\"all_hover_color\":\"#FFFFFF\",\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(868,186,'_elementor_page_assets','a:0:{}'),(870,187,'_wp_page_template','elementor_canvas'),(871,187,'_elementor_edit_mode','builder'),(872,187,'_elementor_template_type','wp-post'),(873,187,'_elementor_version','3.14.0'),(874,187,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(875,187,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=secondary\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"globals\\/colors?id=secondary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f9cb01f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"653de85e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5b467939\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Logo-Esseine-White.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"10185c0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5356d617\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=30e5369\",\"color_menu_item_active\":\"globals\\/colors?id=accent\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=30e5369\",\"all_text_color\":\"globals\\/colors?id=primary\",\"all_border_color\":\"globals\\/colors?id=30e5369\",\"all_background_hover_color_color\":\"globals\\/colors?id=cfd96a7\",\"all_hover_color\":\"globals\\/colors?id=30e5369\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=30e5369\"},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Marcellus\",\"menu_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_active\":\"#D59999\",\"color_dropdown_item\":\"#5E0826\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#D59999\",\"all_text_color\":\"#5E0826\",\"all_border_color\":\"#FFFFFF\",\"all_hover_color\":\"#FFFFFF\",\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(876,187,'_elementor_page_assets','a:0:{}'),(878,188,'_wp_page_template','elementor_canvas'),(879,188,'_elementor_edit_mode','builder'),(880,188,'_elementor_template_type','wp-post'),(881,188,'_elementor_version','3.14.0'),(882,188,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(883,188,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=secondary\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"globals\\/colors?id=secondary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(884,188,'_elementor_page_assets','a:0:{}'),(914,192,'_edit_lock','1687350384:1'),(915,192,'_wp_page_template','elementor_canvas'),(916,192,'_elementor_edit_mode','builder'),(917,192,'_elementor_template_type','wp-page'),(918,192,'_elementor_version','3.14.0'),(926,195,'_wp_page_template','elementor_header_footer'),(927,195,'_elementor_edit_mode','builder'),(928,195,'_elementor_template_type','wp-page'),(929,195,'_elementor_version','3.14.0'),(930,196,'_wp_page_template','elementor_header_footer'),(931,196,'_elementor_edit_mode','builder'),(932,196,'_elementor_template_type','wp-page'),(933,196,'_elementor_version','3.14.0'),(934,192,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(935,192,'_elementor_data','[{\"id\":\"39086ac6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#020101\",\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"5af6ad3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"423dcb59\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62be501f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2177c163\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"13bff3a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-24.png\"},\"title_text\":\"0083-888-567\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"61a74318\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"27e7fda2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-8.png\"},\"title_text\":\"esseine@mail.com\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c207a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"42bcfa71\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-22.png\"},\"title_text\":\"London SE1 7PB, UK\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a9b4664\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2e2a1297\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"422866a2\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":523,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"height_mobile\":{\"unit\":\"px\",\"size\":322,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":499,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"47a80685\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ebd862e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\"},\"_z_index\":0,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":119},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-86,\"unit\":\"px\"},\"_offset_y\":{\"size\":-79,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":91},\"_offset_x_tablet\":{\"size\":-58,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":219,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-74,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-65,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3002a37b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b42fc8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(936,197,'_wp_page_template','elementor_header_footer'),(937,197,'_elementor_edit_mode','builder'),(938,197,'_elementor_template_type','wp-page'),(939,197,'_elementor_version','3.14.0'),(940,197,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(941,197,'_elementor_data','[{\"id\":\"39086ac6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5af6ad3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"423dcb59\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62be501f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2177c163\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"13bff3a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-24.png\"},\"title_text\":\"0083-888-567\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"title_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"61a74318\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"27e7fda2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-8.png\"},\"title_text\":\"esseine@mail.com\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c207a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"42bcfa71\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-22.png\"},\"title_text\":\"London SE1 7PB, UK\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a9b4664\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2e2a1297\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"422866a2\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":523,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"height_mobile\":{\"unit\":\"px\",\"size\":322,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":499,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"47a80685\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ebd862e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\"},\"_z_index\":0,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":119},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-86,\"unit\":\"px\"},\"_offset_y\":{\"size\":-79,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":91},\"_offset_x_tablet\":{\"size\":-58,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":219,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-74,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-65,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3002a37b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b42fc8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2041ef64\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"204***1632970867422\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false}]'),(942,192,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(943,192,'_eael_custom_js',''),(944,198,'_menu_item_type','post_type'),(945,198,'_menu_item_menu_item_parent','0'),(946,198,'_menu_item_object_id','192'),(947,198,'_menu_item_object','page'),(948,198,'_menu_item_target',''),(949,198,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(950,198,'_menu_item_xfn',''),(951,198,'_menu_item_url',''),(971,201,'_wp_page_template','elementor_header_footer'),(972,201,'_elementor_edit_mode','builder'),(973,201,'_elementor_template_type','wp-page'),(974,201,'_elementor_version','3.14.0'),(975,201,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (976,201,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"globals\\/colors?id=233c4a0\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(977,201,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(979,202,'_wp_page_template','elementor_header_footer'),(980,202,'_elementor_edit_mode','builder'),(981,202,'_elementor_template_type','wp-page'),(982,202,'_elementor_version','3.14.0'),(983,202,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(984,202,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"globals\\/colors?id=233c4a0\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(985,202,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(987,203,'_wp_page_template','elementor_header_footer'),(988,203,'_elementor_edit_mode','builder'),(989,203,'_elementor_template_type','wp-page'),(990,203,'_elementor_version','3.14.0'),(991,203,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(992,203,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"globals\\/colors?id=233c4a0\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(993,203,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(995,204,'_wp_page_template','elementor_canvas'),(996,204,'_elementor_edit_mode','builder'),(997,204,'_elementor_template_type','wp-post'),(998,204,'_elementor_version','3.14.0'),(999,204,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1000,204,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=secondary\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"globals\\/colors?id=secondary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1001,204,'_elementor_page_assets','a:0:{}'),(1002,205,'_wp_page_template','elementor_canvas'),(1003,205,'_elementor_edit_mode','builder'),(1004,205,'_elementor_template_type','wp-post'),(1005,205,'_elementor_version','3.14.0'),(1006,205,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1007,205,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"globals\\/colors?id=primary\",\"color_menu_item_active\":\"globals\\/colors?id=secondary\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"globals\\/colors?id=secondary\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"globals\\/colors?id=secondary\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1008,205,'_elementor_page_assets','a:0:{}'),(1009,206,'_wp_page_template','elementor_canvas'),(1010,206,'_elementor_edit_mode','builder'),(1011,206,'_elementor_template_type','wp-post'),(1012,206,'_elementor_version','3.14.0'),(1013,206,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1014,206,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"\",\"color_menu_item_active\":\"\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Marcellus\",\"menu_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#EF529D\",\"color_menu_item_hover\":\"#D59999\",\"color_menu_item_active\":\"#D59999\",\"color_dropdown_item\":\"#5E0826\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#D59999\",\"color_dropdown_item_active\":\"#5E0826\",\"divider_border_color\":\"#5E0826\",\"toggle_color\":\"#5E0826\",\"all_text_color\":\"#FFFFFF\",\"all_background_color_color\":\"#EF529D\",\"all_border_color\":\"#D59999\",\"all_hover_color\":\"#EF529D\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_border_hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1015,206,'_elementor_page_assets','a:0:{}'),(1023,208,'_wp_page_template','elementor_header_footer'),(1024,208,'_elementor_edit_mode','builder'),(1025,208,'_elementor_template_type','wp-page'),(1026,208,'_elementor_version','3.14.0'),(1027,208,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1028,208,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"globals\\/colors?id=233c4a0\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1029,208,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1030,209,'_wp_page_template','elementor_header_footer'),(1031,209,'_elementor_edit_mode','builder'),(1032,209,'_elementor_template_type','wp-page'),(1033,209,'_elementor_version','3.14.0'),(1034,209,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1035,209,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#5E0826\",\"name_text_color\":\"#5E0826\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"globals\\/colors?id=primary\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"globals\\/colors?id=233c4a0\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1036,209,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1037,210,'_wp_page_template','elementor_header_footer'),(1038,210,'_elementor_edit_mode','builder'),(1039,210,'_elementor_template_type','wp-page'),(1040,210,'_elementor_version','3.14.0'),(1041,210,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1042,210,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"globals\\/colors?id=233c4a0\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1043,210,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1044,211,'_wp_page_template','elementor_header_footer'),(1045,211,'_elementor_edit_mode','builder'),(1046,211,'_elementor_template_type','wp-page'),(1047,211,'_elementor_version','3.14.0'),(1048,211,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1049,211,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"globals\\/colors?id=233c4a0\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1050,211,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1051,212,'_wp_page_template','elementor_header_footer'),(1052,212,'_elementor_edit_mode','builder'),(1053,212,'_elementor_template_type','wp-page'),(1054,212,'_elementor_version','3.14.0'),(1055,212,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1056,212,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"globals\\/colors?id=233c4a0\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1057,212,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1058,213,'_wp_page_template','elementor_header_footer'),(1059,213,'_elementor_edit_mode','builder'),(1060,213,'_elementor_template_type','wp-page'),(1061,213,'_elementor_version','3.14.0'),(1062,213,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1063,213,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"eael_accordion_img_overlay_color\":\"#D5999940\",\"eael_accordion_img_hover_color\":\"#EF529D52\",\"eael_accordion_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"eael_accordion_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1064,213,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1065,214,'_wp_attached_file','2023/06/Icon-01-scaled.webp'),(1066,214,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:2077;s:4:\"file\";s:27:\"2023/06/Icon-01-scaled.webp\";s:8:\"filesize\";i:38526;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Icon-01-300x243.webp\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4070;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"Icon-01-1024x831.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:831;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14910;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Icon-01-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1846;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Icon-01-768x623.webp\";s:5:\"width\";i:768;s:6:\"height\";i:623;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10882;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"Icon-01-1536x1246.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1246;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22940;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"Icon-01-2048x1662.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1662;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:30178;}}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:{}}s:14:\"original_image\";s:12:\"Icon-01.webp\";}'),(1067,215,'_wp_page_template','elementor_header_footer'),(1068,215,'_elementor_edit_mode','builder'),(1069,215,'_elementor_template_type','wp-page'),(1070,215,'_elementor_version','3.14.0'),(1071,215,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1072,215,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"eael_accordion_img_overlay_color\":\"#D5999940\",\"eael_accordion_img_hover_color\":\"#EF529D52\",\"eael_accordion_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"eael_accordion_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1073,215,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1074,216,'_wp_page_template','elementor_header_footer'),(1075,216,'_elementor_edit_mode','builder'),(1076,216,'_elementor_template_type','wp-page'),(1077,216,'_elementor_version','3.14.0'),(1078,216,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1079,216,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"65\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/petik.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"eael_accordion_img_overlay_color\":\"#D5999940\",\"eael_accordion_img_hover_color\":\"#EF529D52\",\"eael_accordion_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"eael_accordion_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1080,216,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1081,217,'_wp_page_template','elementor_header_footer'),(1082,217,'_elementor_edit_mode','builder'),(1083,217,'_elementor_template_type','wp-page'),(1084,217,'_elementor_version','3.14.0'),(1085,217,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1086,217,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"eael_accordion_img_overlay_color\":\"#D5999940\",\"eael_accordion_img_hover_color\":\"#EF529D52\",\"eael_accordion_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"eael_accordion_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1087,217,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1095,219,'_wp_page_template','elementor_canvas'),(1096,219,'_elementor_edit_mode','builder'),(1097,219,'_elementor_template_type','wp-post'),(1098,219,'_elementor_version','3.14.0'),(1099,219,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1100,219,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"\",\"color_menu_item_active\":\"\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Marcellus\",\"menu_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#EF529D\",\"color_menu_item_hover\":\"#D59999\",\"color_menu_item_active\":\"#D59999\",\"color_dropdown_item\":\"#5E0826\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#D59999\",\"color_dropdown_item_active\":\"#5E0826\",\"divider_border_color\":\"#5E0826\",\"toggle_color\":\"#5E0826\",\"all_text_color\":\"#FFFFFF\",\"all_background_color_color\":\"#EF529D\",\"all_border_color\":\"#D59999\",\"all_hover_color\":\"#EF529D\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_border_hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1101,219,'_elementor_page_assets','a:0:{}'),(1102,220,'_wp_page_template','elementor_canvas'),(1103,220,'_elementor_edit_mode','builder'),(1104,220,'_elementor_template_type','wp-post'),(1105,220,'_elementor_version','3.14.0'),(1106,220,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1107,220,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"\",\"color_menu_item_active\":\"\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"\",\"color_dropdown_item_hover\":\"globals\\/colors?id=secondary\",\"color_dropdown_item\":\"globals\\/colors?id=primary\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"globals\\/colors?id=primary\",\"toggle_color\":\"globals\\/colors?id=primary\"},\"resp_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Marcellus\",\"menu_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#EF529D\",\"color_menu_item_hover\":\"#D59999\",\"color_menu_item_active\":\"#D59999\",\"color_dropdown_item\":\"#5E0826\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#D59999\",\"color_dropdown_item_active\":\"#5E0826\",\"divider_border_color\":\"#5E0826\",\"toggle_color\":\"#5E0826\",\"all_text_color\":\"#FFFFFF\",\"all_background_color_color\":\"#EF529D\",\"all_border_color\":\"#D59999\",\"all_hover_color\":\"#EF529D\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_border_hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1108,220,'_elementor_page_assets','a:0:{}'),(1109,221,'_wp_page_template','elementor_canvas'),(1110,221,'_elementor_edit_mode','builder'),(1111,221,'_elementor_template_type','wp-post'),(1112,221,'_elementor_version','3.14.0'),(1113,221,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1114,221,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"\",\"color_menu_item_active\":\"\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"\",\"color_dropdown_item_hover\":\"\",\"color_dropdown_item\":\"\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"\",\"toggle_color\":\"\"},\"resp_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Marcellus\",\"menu_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#EF529D\",\"color_menu_item_hover\":\"#D59999\",\"color_menu_item_active\":\"#D59999\",\"color_dropdown_item\":\"#EF529D\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#D59999\",\"color_dropdown_item_active\":\"#D59999\",\"divider_border_color\":\"#5E0826\",\"toggle_color\":\"#EF529D\",\"all_text_color\":\"#FFFFFF\",\"all_background_color_color\":\"#EF529D\",\"all_border_color\":\"#D59999\",\"all_hover_color\":\"#EF529D\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_border_hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1115,221,'_elementor_page_assets','a:0:{}'),(1118,222,'_wp_page_template','elementor_canvas'),(1119,222,'_elementor_edit_mode','builder'),(1120,222,'_elementor_template_type','wp-post'),(1121,222,'_elementor_version','3.14.0'),(1122,222,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1123,222,'_elementor_data','[{\"id\":\"5515e76\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7f832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3cde1e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"f1fd7c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e651ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":151,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International.png\",\"alt\":\"Noha International\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"139517ff\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"802b9f0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"0afbf97\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ec310cc\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.29999999999999999,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\"},\"align_mobile\":\"center\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"268ef033\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22.527000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57eca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a420727\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"70685153\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20.817,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b70d719\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f4b71fa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f7f0e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":31.655999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"17bd195a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78218c72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Riverside Building, County Hall, London SE1 7PB, United Kingdom\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"57d6461\"},{\"text\":\"+375(76) 878-76-76<br>contact@esseine.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"4baaf7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63719ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2023 Noha International \\u2022 All Rights Reserved\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=897f75f\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1124,222,'_elementor_page_assets','a:0:{}'),(1126,223,'_wp_page_template','elementor_canvas'),(1127,223,'_elementor_edit_mode','builder'),(1128,223,'_elementor_template_type','wp-post'),(1129,223,'_elementor_version','3.14.0'),(1130,223,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (1131,223,'_elementor_data','[{\"id\":\"5515e76\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7f832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3cde1e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"f1fd7c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e651ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":151,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International.png\",\"alt\":\"Noha International\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"139517ff\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"802b9f0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"0afbf97\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ec310cc\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.29999999999999999,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\"},\"align_mobile\":\"center\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"268ef033\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22.527000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57eca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a420727\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"70685153\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20.817,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b70d719\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f4b71fa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f7f0e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":31.655999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"17bd195a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78218c72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Riverside Building, County Hall, London SE1 7PB, United Kingdom\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"57d6461\"},{\"text\":\"+375(76) 878-76-76<br>contact@esseine.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"4baaf7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63719ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2023 Noha International \\u2022 All Rights Reserved\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=897f75f\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1132,223,'_elementor_page_assets','a:0:{}'),(1134,224,'_wp_page_template','elementor_canvas'),(1135,224,'_elementor_edit_mode','builder'),(1136,224,'_elementor_template_type','wp-post'),(1137,224,'_elementor_version','3.14.0'),(1138,224,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1139,224,'_elementor_data','[{\"id\":\"5515e76\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"e7f832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3cde1e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"f1fd7c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e651ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":151,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International.png\",\"alt\":\"Noha International\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"139517ff\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"802b9f0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"0afbf97\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ec310cc\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.29999999999999999,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"},\"align_mobile\":\"center\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_primary_color\":\"#EF529D\",\"hover_primary_color\":\"#FFFFFF\",\"hover_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"268ef033\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22.527000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57eca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a420727\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"70685153\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20.817,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b70d719\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f4b71fa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f7f0e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":31.655999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"17bd195a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78218c72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Riverside Building, County Hall, London SE1 7PB, United Kingdom\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"57d6461\"},{\"text\":\"+375(76) 878-76-76<br>contact@esseine.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"4baaf7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63719ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2023 Noha International \\u2022 All Rights Reserved\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=897f75f\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1140,224,'_elementor_page_assets','a:0:{}'),(1142,225,'_wp_page_template','elementor_header_footer'),(1143,225,'_elementor_edit_mode','builder'),(1144,225,'_elementor_template_type','wp-page'),(1145,225,'_elementor_version','3.14.0'),(1146,225,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1147,225,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"eael_accordion_img_overlay_color\":\"#D5999940\",\"eael_accordion_img_hover_color\":\"#EF529D52\",\"eael_accordion_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"eael_accordion_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1148,225,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1150,226,'_wp_page_template','elementor_header_footer'),(1151,226,'_elementor_edit_mode','builder'),(1152,226,'_elementor_template_type','wp-page'),(1153,226,'_elementor_version','3.14.0'),(1154,226,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1155,226,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"eael_accordion_img_overlay_color\":\"#D5999940\",\"eael_accordion_img_hover_color\":\"#EF529D52\",\"eael_accordion_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"eael_accordion_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1156,226,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1158,227,'_wp_page_template','elementor_header_footer'),(1159,227,'_elementor_edit_mode','builder'),(1160,227,'_elementor_template_type','wp-page'),(1161,227,'_elementor_version','3.14.0'),(1162,227,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1163,227,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"eael_accordion_img_overlay_color\":\"#D5999940\",\"eael_accordion_img_hover_color\":\"#EF529D52\",\"eael_accordion_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"eael_accordion_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1164,227,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1168,228,'_wp_attached_file','2023/06/Icon-2-01-scaled.webp'),(1169,228,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:2446;s:4:\"file\";s:29:\"2023/06/Icon-2-01-scaled.webp\";s:8:\"filesize\";i:148802;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Icon-2-01-300x287.webp\";s:5:\"width\";i:300;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8972;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"Icon-2-01-1024x978.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:978;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:49602;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Icon-2-01-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3372;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"Icon-2-01-768x734.webp\";s:5:\"width\";i:768;s:6:\"height\";i:734;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:33700;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"Icon-2-01-1536x1467.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1467;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:82432;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"Icon-2-01-2048x1956.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1956;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:116150;}}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:{}}s:14:\"original_image\";s:14:\"Icon-2-01.webp\";}'),(1170,229,'_wp_attached_file','2023/06/Icon-4-01-scaled.webp'),(1171,229,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1598;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2023/06/Icon-4-01-scaled.webp\";s:8:\"filesize\";i:136554;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Icon-4-01-187x300.webp\";s:5:\"width\";i:187;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8950;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"Icon-4-01-639x1024.webp\";s:5:\"width\";i:639;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:48224;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Icon-4-01-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4844;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Icon-4-01-768x1230.webp\";s:5:\"width\";i:768;s:6:\"height\";i:1230;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:60092;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"Icon-4-01-959x1536.webp\";s:5:\"width\";i:959;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:78400;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"Icon-4-01-1279x2048.webp\";s:5:\"width\";i:1279;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:108634;}}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:{}}s:14:\"original_image\";s:14:\"Icon-4-01.webp\";}'),(1172,230,'_wp_attached_file','2023/06/Icon-3-01-scaled.webp'),(1173,230,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1207;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2023/06/Icon-3-01-scaled.webp\";s:8:\"filesize\";i:121358;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Icon-3-01-141x300.webp\";s:5:\"width\";i:141;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7922;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"Icon-3-01-483x1024.webp\";s:5:\"width\";i:483;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:42092;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Icon-3-01-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4238;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Icon-3-01-768x1629.webp\";s:5:\"width\";i:768;s:6:\"height\";i:1629;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:74098;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"Icon-3-01-724x1536.webp\";s:5:\"width\";i:724;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:69246;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:23:\"Icon-3-01-966x2048.webp\";s:5:\"width\";i:966;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:95924;}}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:{}}s:14:\"original_image\";s:14:\"Icon-3-01.webp\";}'),(1174,231,'_wp_page_template','elementor_header_footer'),(1175,231,'_elementor_edit_mode','builder'),(1176,231,'_elementor_template_type','wp-page'),(1177,231,'_elementor_version','3.14.0'),(1178,231,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1179,231,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"eael_accordion_img_overlay_color\":\"#D5999940\",\"eael_accordion_img_hover_color\":\"#EF529D52\",\"eael_accordion_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"eael_accordion_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1180,231,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1182,232,'_wp_page_template','elementor_header_footer'),(1183,232,'_elementor_edit_mode','builder'),(1184,232,'_elementor_template_type','wp-page'),(1185,232,'_elementor_version','3.14.0'),(1186,232,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1187,232,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"13\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.1-Converted.png\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-4.1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"eael_accordion_img_overlay_color\":\"#D5999940\",\"eael_accordion_img_hover_color\":\"#EF529D52\",\"eael_accordion_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"eael_accordion_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1188,232,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1190,233,'_wp_page_template','elementor_header_footer'),(1191,233,'_elementor_edit_mode','builder'),(1192,233,'_elementor_template_type','wp-page'),(1193,233,'_elementor_version','3.14.0'),(1194,233,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1195,233,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":229,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-4-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":230,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-3-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"eael_accordion_img_overlay_color\":\"#D5999940\",\"eael_accordion_img_hover_color\":\"#EF529D52\",\"eael_accordion_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"eael_accordion_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1196,233,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1199,234,'_wp_page_template','elementor_header_footer'),(1200,234,'_elementor_edit_mode','builder'),(1201,234,'_elementor_template_type','wp-page'),(1202,234,'_elementor_version','3.14.0'),(1203,234,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1204,234,'_elementor_data','[{\"id\":\"39086ac6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5af6ad3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"423dcb59\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62be501f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2177c163\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"13bff3a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-24.png\"},\"title_text\":\"0083-888-567\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"title_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"61a74318\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"27e7fda2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-8.png\"},\"title_text\":\"esseine@mail.com\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c207a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"42bcfa71\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-22.png\"},\"title_text\":\"London SE1 7PB, UK\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a9b4664\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2e2a1297\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"422866a2\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":523,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"height_mobile\":{\"unit\":\"px\",\"size\":322,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":499,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"47a80685\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ebd862e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\"},\"_z_index\":0,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":119},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-86,\"unit\":\"px\"},\"_offset_y\":{\"size\":-79,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":91},\"_offset_x_tablet\":{\"size\":-58,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":219,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-74,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-65,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3002a37b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b42fc8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2041ef64\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"204***1632970867422\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false}]'),(1205,234,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1207,235,'_wp_page_template','elementor_header_footer'),(1208,235,'_elementor_edit_mode','builder'),(1209,235,'_elementor_template_type','wp-page'),(1210,235,'_elementor_version','3.14.0'),(1211,235,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1212,235,'_elementor_data','[{\"id\":\"39086ac6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5af6ad3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"423dcb59\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62be501f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2177c163\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"13bff3a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-24.png\"},\"title_text\":\"0083-888-567\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"title_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"61a74318\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"27e7fda2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-8.png\"},\"title_text\":\"esseine@mail.com\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c207a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"42bcfa71\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-22.png\"},\"title_text\":\"London SE1 7PB, UK\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a9b4664\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2e2a1297\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"422866a2\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":523,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"height_mobile\":{\"unit\":\"px\",\"size\":322,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":499,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"47a80685\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ebd862e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\"},\"_z_index\":0,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":119},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-86,\"unit\":\"px\"},\"_offset_y\":{\"size\":-79,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":91},\"_offset_x_tablet\":{\"size\":-58,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":219,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-74,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-65,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3002a37b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b42fc8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2041ef64\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"204***1632970867422\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false}]'),(1213,235,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1215,236,'_wp_page_template','elementor_canvas'),(1216,236,'_elementor_edit_mode','builder'),(1217,236,'_elementor_template_type','wp-page'),(1218,236,'_elementor_version','3.14.0'),(1219,236,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1220,236,'_elementor_data','[{\"id\":\"39086ac6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#020101\",\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"5af6ad3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"423dcb59\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62be501f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2177c163\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"13bff3a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"16\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-24.png\"},\"title_text\":\"0083-888-567\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_background_hover_background\":\"classic\",\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_hover_position\":\"center center\",\"_background_hover_repeat\":\"no-repeat\",\"_background_hover_size\":\"cover\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"61a74318\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"27e7fda2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"19\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-8.png\"},\"title_text\":\"esseine@mail.com\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c207a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":16,\"spread\":0,\"color\":\"rgba(223, 223, 223, 0.39)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false}},\"elements\":[{\"id\":\"42bcfa71\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"24\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Artboard-22.png\"},\"title_text\":\"London SE1 7PB, UK\",\"description_text\":\"\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_animation\":\"grow\",\"content_vertical_alignment\":\"middle\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_size\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":14,\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":12,\"sizes\":[]},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a9b4664\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"2e2a1297\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"422866a2\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":523,\"sizes\":[]},\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"height_mobile\":{\"unit\":\"px\",\"size\":322,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":499,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"47a80685\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ebd862e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"30\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\"},\"_z_index\":0,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":119},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-86,\"unit\":\"px\"},\"_offset_y\":{\"size\":-79,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":91},\"_offset_x_tablet\":{\"size\":-58,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":219,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-74,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-65,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3002a37b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b42fc8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1221,236,'_elementor_page_assets','a:1:{s:6:\"styles\";a:3:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";}}'),(1224,237,'_wp_attached_file','2023/06/Icon-5-01-scaled.webp'),(1225,237,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2023/06/Icon-5-01-scaled.webp\";s:8:\"filesize\";i:49274;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Icon-5-01-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5678;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"Icon-5-01-1024x1024.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19644;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Icon-5-01-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2808;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"Icon-5-01-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14726;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"Icon-5-01-1536x1536.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:29628;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"Icon-5-01-2048x2048.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:39454;}}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:{}}s:14:\"original_image\";s:14:\"Icon-5-01.webp\";}'),(1226,238,'_wp_attached_file','2023/06/Icon-02-scaled.webp'),(1227,238,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:27:\"2023/06/Icon-02-scaled.webp\";s:8:\"filesize\";i:78284;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Icon-02-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9378;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"Icon-02-1024x1024.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:31444;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Icon-02-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4406;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Icon-02-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:23454;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"Icon-02-1536x1536.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:47150;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"Icon-02-2048x2048.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:62906;}}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:{}}s:14:\"original_image\";s:12:\"Icon-02.webp\";}'),(1228,239,'_wp_attached_file','2023/06/Icon-03-scaled.webp'),(1229,239,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:27:\"2023/06/Icon-03-scaled.webp\";s:8:\"filesize\";i:67592;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"Icon-03-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8186;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"Icon-03-1024x1024.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:26514;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"Icon-03-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3728;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"Icon-03-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19966;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"Icon-03-1536x1536.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:40118;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"Icon-03-2048x2048.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:53798;}}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:{}}s:14:\"original_image\";s:12:\"Icon-03.webp\";}'),(1238,241,'_wp_page_template','elementor_header_footer'),(1239,241,'_elementor_edit_mode','builder'),(1240,241,'_elementor_template_type','wp-page'),(1241,241,'_elementor_version','3.14.0'),(1242,241,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1243,241,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":229,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-4-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":230,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-3-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"eael_accordion_img_overlay_color\":\"#D5999940\",\"eael_accordion_img_hover_color\":\"#EF529D52\",\"eael_accordion_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"eael_accordion_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1244,241,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1245,242,'_wp_page_template','elementor_header_footer'),(1246,242,'_elementor_edit_mode','builder'),(1247,242,'_elementor_template_type','wp-page'),(1248,242,'_elementor_version','3.14.0'),(1249,242,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1250,242,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":229,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-4-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":230,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-3-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"eael_accordion_img_overlay_color\":\"#D5999940\",\"eael_accordion_img_hover_color\":\"#EF529D52\",\"eael_accordion_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"eael_accordion_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1251,242,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1252,243,'_wp_page_template','elementor_header_footer'),(1253,243,'_elementor_edit_mode','builder'),(1254,243,'_elementor_template_type','wp-page'),(1255,243,'_elementor_version','3.14.0'),(1256,243,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1257,243,'_elementor_data','[{\"id\":\"7e3776fe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"36b141e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"3832189c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73c5b13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d652008\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2444c647\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f1ed97c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1652c55e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"679a83ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3bab032c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2301ec32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f889f1c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4616fdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1915dcad\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"194434cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1945a852\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4607-Massage-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5042af42\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Treatment\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c790d53\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"62fb903f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"11db6ff0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4606-Mask-on-Face-1.png\"},\"width\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72ba4980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Treatment\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"455d80c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"5fc13f6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"7daeaac4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d55ad06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relaxtions\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"565f05b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"423ac0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db5b7b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d713bc3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":55,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":0,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-14,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"739dc21f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":229,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-4-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":315},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-162,\"unit\":\"px\"},\"_offset_y\":{\"size\":1,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":219},\"_offset_x_mobile\":{\"size\":-137,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-95,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"513f0fcb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-massage-in-spa-salon-SDSUDMU.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"78624c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bcfcfd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":118.71899999999999},\"_position\":\"absolute\",\"_offset_x\":{\"size\":516,\"unit\":\"px\"},\"_offset_y\":{\"size\":364,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":62.719000000000001},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":44.719000000000001},\"_offset_x_tablet\":{\"size\":262,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":235,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-24,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dc08248\",\"elType\":\"widget\",\"settings\":{\"title\":\"Esseine Story\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58a8b5d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":800},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b409fb8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":1000},\"elements\":[{\"id\":\"387b4c51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"3489b8d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":75,\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\",\"typography_title_typography\":\"globals\\/typography?id=1473676\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"613bca1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"75aa182d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cool Number\",\"_background_background\":\"classic\",\"ending_number\":68,\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Marcellus\",\"typography_title_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_title_font_weight\":\"400\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=secondary\",\"number_color\":\"globals\\/colors?id=30e5369\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"typography_title_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a739cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"1727df4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6bb3dc4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"},\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2450d133\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1632886412222\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f5c3175\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71a969f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d0dbc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d6716a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"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\":false}},\"elements\":[{\"id\":\"15231f94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"590a98f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":237,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-5-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6feca882\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Message\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e7a170\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3f0123e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"68ba715\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":12,\"blur\":17,\"spread\":7,\"color\":\"rgba(230, 230, 230, 0.21)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6cbaf844\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":238,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-02-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"618f8c1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Face Facial\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6aad6ea2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"364fa288\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1794f582\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_hover_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_radius_hover\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"border_hover_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"11\",\"bottom\":\"30\",\"left\":\"11\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1200},\"elements\":[{\"id\":\"3a61b2cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":239,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-03-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":17,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"485f5721\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b87342f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3363f60d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=30e5369\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=secondary\"},\"button_text_color\":\"#EF529D\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7410c9e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-21\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"39323a6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":55,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2fb18aa0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"97\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-21\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_z_index\":1,\"align_tablet\":\"left\",\"_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\":false},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6907fb0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"105\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e17743a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":230,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-3-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":228},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-115,\"unit\":\"px\"},\"_offset_y\":{\"size\":51,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":109},\"_offset_x_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-38,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-15,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-50,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a18f0a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-402\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-254\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1e7d0dbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"50\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a7f6b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align_mobile\":\"center\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55a93fc6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ece1f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"25449384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"3f04bdbc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"680d5bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"4efd95ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1c640ca4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to help you.\",\"align\":\"right\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"44d3f279\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"2d7c6862\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"130\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"29fa85c4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Information\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4651028e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a567c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"710eefc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Esseine Beauty Team\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be0c523\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d63dc78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500},\"elements\":[{\"id\":\"5964411a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"550dec9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"80\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7ec73901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leona Daleyza \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26858bc7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f79988e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4146e9e3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"61cb036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":800},\"elements\":[{\"id\":\"6871bf94\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center right\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4bae06f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"92\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72190f0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Celine Azaleya\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193be58c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6156fd15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3df19a82\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"4ab61a9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":1100},\"elements\":[{\"id\":\"3d3b02a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"opacity\":{\"unit\":\"px\",\"size\":0.37,\"sizes\":[]},\"_mask_position\":\"center left\",\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"13b254e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"104\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg\"},\"hover_animation\":\"hang\",\"_mask_switch\":\"yes\",\"_mask_shape\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"-242\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-145\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-200\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_mask_image\":{\"id\":\"20\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/blob-3.png\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3f050f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Emilie Koreina\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=accent\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59749126\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Beautician<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62c45e84\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"18b5ec3c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"7b93544\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"59a7096\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"38d5c63\"}],\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.20000000000000001,\"sizes\":[]},\"__globals__\":{\"icon_secondary_color\":\"\",\"icon_primary_color\":\"globals\\/colors?id=cfd96a7\"},\"icon_primary_color\":\"#02010100\",\"icon_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36e68695\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_color\":\"#EF529D\"},\"elements\":[{\"id\":\"277efba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"animation_delay\":500,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"6847cce8\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Clients Say\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c907bf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"61559c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74e54eee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":36.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-58,\"unit\":\"px\"},\"_offset_y\":{\"size\":-15,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-48,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-6,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":33.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":27.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-11,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18e5bf06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":214,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":35.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":451,\"unit\":\"px\"},\"_offset_y\":{\"size\":-14,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":278,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-3,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":30.5},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":28.5},\"_offset_x_mobile\":{\"size\":-17,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":229,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"351bd92b\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-sleep-7DRHLVJ-1.jpg\"},\"testimonial_name\":\"Maresha\",\"testimonial_job\":\"CEO\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true},{\"id\":\"d9aa357\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"472c6b5f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\",\"testimonial_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\"},\"testimonial_name\":\"Marlina\",\"testimonial_job\":\"Vlogger\",\"testimonial_alignment\":\"left\",\"content_content_color\":\"#EF529D\",\"name_text_color\":\"#EF529D\",\"name_typography_typography\":\"custom\",\"name_typography_font_family\":\"Marcellus\",\"name_typography_font_size\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"__globals__\":{\"job_typography_typography\":\"globals\\/typography?id=text\",\"content_typography_typography\":\"globals\\/typography?id=text\",\"job_text_color\":\"\"},\"image_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"testimonial_alignment_mobile\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Sarabun\",\"content_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_text_color\":\"#EF529D\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Sarabun\",\"job_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"job_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"job_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c4f297c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5765618\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d6a1511\",\"elType\":\"widget\",\"settings\":{\"eael_img_accordions\":[{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"111\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\"},\"_id\":\"f1de3af\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"117\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/relaxing-spa-procedure-YWFXDHM.jpg\"},\"_id\":\"29de6f6\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"118\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg\"},\"_id\":\"55aa751\"},{\"eael_accordion_tittle\":\"\",\"eael_accordion_content\":\"\",\"eael_accordion_bg\":{\"id\":\"122\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beauty-treatment-in-spa-8KRHVMY.jpg\"},\"_id\":\"1fcc14c\"}],\"eael_accordion_height\":\"400\",\"eael_accordion_title_typography_typography\":\"custom\",\"eael_accordion_title_typography_font_family\":\"Marcellus\",\"eael_accordion_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_accordion_title_typography_font_weight\":\"500\",\"__globals__\":{\"eael_accordion_title_typography_typography\":\"globals\\/typography?id=accent\",\"eael_accordion_img_overlay_color\":\"globals\\/colors?id=158c32f\",\"eael_accordion_img_hover_color\":\"\"},\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"eael_accordion_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"eael_accordion_img_overlay_color\":\"#D5999940\",\"eael_accordion_img_hover_color\":\"#EF529D52\",\"eael_accordion_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"eael_accordion_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-image-accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1258,243,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1261,247,'_sln_service_price','15'),(1262,247,'_sln_service_unit','3'),(1263,247,'_sln_service_order','0'),(1264,248,'_sln_service_price','10.11'),(1265,248,'_sln_service_unit','2'),(1266,248,'_sln_service_duration','00:30'),(1267,248,'_sln_service_secondary',''),(1268,248,'_sln_service_notav_from','11'),(1269,248,'_sln_service_notav_to','15'),(1270,248,'_sln_service_order','0'),(1271,249,'_sln_service_price','29.99'),(1272,249,'_sln_service_unit','2'),(1273,249,'_sln_service_duration','01:00'),(1274,249,'_sln_service_secondary','1'),(1275,249,'_sln_service_notav_from','11'),(1276,249,'_sln_service_notav_to','15'),(1277,249,'_sln_service_order','0'),(1278,253,'_sln_booking_services','a:0:{}'),(1279,253,'_sln_booking_services_processed','1'),(1280,253,'_sln_booking_duration','00:30'),(1281,253,'_sln_calendar_attendants_events_id','a:0:{}'),(1283,254,'_wp_page_template','elementor_canvas'),(1284,254,'_elementor_edit_mode','builder'),(1285,254,'_elementor_template_type','wp-post'),(1286,254,'_elementor_version','3.14.0'),(1287,254,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1288,254,'_elementor_data','[{\"id\":\"5515e76\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"e7f832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3cde1e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"f1fd7c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e651ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":151,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International.png\",\"alt\":\"Noha International\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"139517ff\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"802b9f0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"0afbf97\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ec310cc\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.29999999999999999,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"},\"align_mobile\":\"center\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_primary_color\":\"#EF529D\",\"hover_primary_color\":\"#FFFFFF\",\"hover_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"268ef033\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22.527000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57eca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a420727\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"70685153\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20.817,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b70d719\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f4b71fa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f7f0e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":31.655999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"17bd195a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78218c72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Riverside Building, County Hall, London SE1 7PB, United Kingdom\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"57d6461\"},{\"text\":\"+375(76) 878-76-76<br>contact@esseine.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"4baaf7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63719ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2023 Noha International \\u2022 All Rights Reserved\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=897f75f\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1289,254,'_elementor_page_assets','a:0:{}'),(1291,255,'_wp_page_template','elementor_canvas'),(1292,255,'_elementor_edit_mode','builder'),(1293,255,'_elementor_template_type','wp-post'),(1294,255,'_elementor_version','3.14.0'),(1295,255,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1296,255,'_elementor_data','[{\"id\":\"5515e76\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"e7f832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3cde1e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"f1fd7c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e651ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":151,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International.png\",\"alt\":\"Noha International\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"139517ff\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"802b9f0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"0afbf97\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ec310cc\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.29999999999999999,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"},\"align_mobile\":\"center\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_primary_color\":\"#EF529D\",\"hover_primary_color\":\"#FFFFFF\",\"hover_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"268ef033\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22.527000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57eca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a420727\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"70685153\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20.817,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b70d719\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f4b71fa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f7f0e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":31.655999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"17bd195a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78218c72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Riverside Building, County Hall, London SE1 7PB, United Kingdom\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"57d6461\"},{\"text\":\"+375(76) 878-76-76<br>contact@esseine.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"4baaf7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63719ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2023 Noha International \\u2022 All Rights Reserved\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=897f75f\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1297,255,'_elementor_page_assets','a:0:{}'),(1299,256,'_wp_page_template','elementor_canvas'),(1300,256,'_elementor_edit_mode','builder'),(1301,256,'_elementor_template_type','wp-post'),(1302,256,'_elementor_version','3.14.0'),(1303,256,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1304,256,'_elementor_data','[{\"id\":\"5515e76\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"e7f832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3cde1e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"f1fd7c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e651ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":151,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International.png\",\"alt\":\"Noha International\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"139517ff\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"802b9f0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"0afbf97\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ec310cc\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.29999999999999999,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"},\"align_mobile\":\"center\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_primary_color\":\"#EF529D\",\"hover_primary_color\":\"#FFFFFF\",\"hover_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"268ef033\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22.527000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57eca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a420727\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"70685153\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20.817,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b70d719\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f4b71fa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f7f0e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":31.655999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"17bd195a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78218c72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"57d6461\"},{\"text\":\"+375(76) 878-76-76<br>contact@esseine.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"4baaf7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63719ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2023 Noha International \\u2022 All Rights Reserved\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=897f75f\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1305,256,'_elementor_page_assets','a:0:{}'),(1308,257,'_wp_attached_file','2023/06/gen_logo.png'),(1309,257,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4160;s:6:\"height\";i:1764;s:4:\"file\";s:20:\"2023/06/gen_logo.png\";s:8:\"filesize\";i:73302;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"gen_logo-300x127.png\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11520;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"gen_logo-1024x434.png\";s:5:\"width\";i:1024;s:6:\"height\";i:434;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47817;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"gen_logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8710;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"gen_logo-768x326.png\";s:5:\"width\";i:768;s:6:\"height\";i:326;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34360;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"gen_logo-1536x651.png\";s:5:\"width\";i:1536;s:6:\"height\";i:651;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75313;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:21:\"gen_logo-2048x868.png\";s:5:\"width\";i:2048;s:6:\"height\";i:868;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102595;}s:12:\"sln_gen_logo\";a:5:{s:4:\"file\";s:19:\"gen_logo-160x68.png\";s:5:\"width\";i:160;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5513;}}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:{}}}'),(1319,113,'ekit_post_views_count','2'),(1320,167,'_elementor_edit_mode','builder'),(1321,167,'_elementor_template_type','wp-page'),(1322,167,'_elementor_version','3.16.3'),(1330,259,'_wp_page_template','elementor_header_footer'),(1331,259,'_elementor_edit_mode','builder'),(1332,259,'_elementor_template_type','wp-page'),(1333,259,'_elementor_version','3.15.3'),(1334,260,'_wp_page_template','elementor_header_footer'),(1335,260,'_elementor_edit_mode','builder'),(1336,260,'_elementor_template_type','wp-page'),(1337,260,'_elementor_version','3.15.3'),(1338,167,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1339,167,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"editor\":\"<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bba110\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F7F9FB\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a9bfd69\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2fbe7125\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"edc2662\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"355367fc\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Parlor At Home\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"cf02170\"}],\"ekit_heading_seperator_image\":{\"id\":\"289\",\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/placeholder-54.png\"},\"ekit_heading_title_color\":\"#EF529D\",\"ekit_heading_title_color_mobile\":\"#EF529D\",\"ekit_heading_seperator_color\":\"#DA2A7E\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6c1297f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"a1b40bf\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c38470a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"d058dc1\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"76a1555e\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":295,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Premium Services\",\"ekit_image_box_description_text\":\"Indulge in opulent pampering at our premium parlor services.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#EF529D\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"15e30f3\"}],\"ekit_image_box_front_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_image_box_icons\":{\"value\":\"fasicon icon-poop\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"ekit_image_box_icons\":true}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"68750fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"5b704a0\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"64e45795\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":296,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Basic Services \",\"ekit_image_box_description_text\":\"Elevate your style with essential salon treatments and pampering.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#EF529D\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_title_size\":\"h5\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"0211a65\"}],\"ekit_image_box_front_title_icons\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1340,261,'_wp_page_template','elementor_header_footer'),(1341,261,'_elementor_edit_mode','builder'),(1342,261,'_elementor_template_type','wp-page'),(1343,261,'_elementor_version','3.15.3'),(1344,261,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1345,261,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"361d6a34\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"7acceb02\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"56269204\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_color\":\"#D59999\",\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1346,167,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1347,167,'_eael_custom_js',''),(1348,262,'_wp_attached_file','2023/06/at-hpr-salon.webp'),(1349,262,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:160;s:4:\"file\";s:25:\"2023/06/at-hpr-salon.webp\";s:8:\"filesize\";i:14254;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"at-hpr-salon-300x96.webp\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10288;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"at-hpr-salon-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8562;}}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:{}}}'),(1350,262,'_wp_attachment_image_alt','At Home NOHA INTERNATIONAL'),(1366,265,'_wp_page_template','elementor_header_footer'),(1367,265,'_elementor_edit_mode','builder'),(1368,265,'_elementor_template_type','wp-page'),(1369,265,'_elementor_version','3.15.3'),(1370,265,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1371,265,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"361d6a34\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"7acceb02\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"56269204\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_color\":\"#D59999\",\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1372,265,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1373,266,'_wp_page_template','elementor_header_footer'),(1374,266,'_elementor_edit_mode','builder'),(1375,266,'_elementor_template_type','wp-page'),(1376,266,'_elementor_version','3.15.3'),(1377,266,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (1378,266,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"361d6a34\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"7acceb02\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"56269204\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"title_color\":\"#D59999\",\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"globals\\/colors?id=secondary\",\"bar_inline_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1379,266,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1380,267,'_wp_page_template','elementor_header_footer'),(1381,267,'_elementor_edit_mode','builder'),(1382,267,'_elementor_template_type','wp-page'),(1383,267,'_elementor_version','3.15.3'),(1384,267,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1385,267,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1386,267,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1395,269,'_wp_page_template','elementor_header_footer'),(1396,269,'_elementor_edit_mode','builder'),(1397,269,'_elementor_template_type','wp-page'),(1398,269,'_elementor_version','3.15.3'),(1399,269,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1400,269,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1401,269,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1402,270,'_wp_page_template','elementor_header_footer'),(1403,270,'_elementor_edit_mode','builder'),(1404,270,'_elementor_template_type','wp-page'),(1405,270,'_elementor_version','3.15.3'),(1406,270,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1407,270,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1408,270,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1409,271,'_wp_page_template','elementor_header_footer'),(1410,271,'_elementor_edit_mode','builder'),(1411,271,'_elementor_template_type','wp-page'),(1412,271,'_elementor_version','3.15.3'),(1413,271,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1414,271,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1415,271,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1423,273,'_wp_page_template','elementor_header_footer'),(1424,273,'_elementor_edit_mode','builder'),(1425,273,'_elementor_template_type','wp-page'),(1426,273,'_elementor_version','3.15.3'),(1427,273,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1428,273,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1429,273,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1430,274,'_wp_page_template','elementor_header_footer'),(1431,274,'_elementor_edit_mode','builder'),(1432,274,'_elementor_template_type','wp-page'),(1433,274,'_elementor_version','3.15.3'),(1434,274,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1435,274,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1436,274,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1437,275,'_wp_page_template','elementor_header_footer'),(1438,275,'_elementor_edit_mode','builder'),(1439,275,'_elementor_template_type','wp-page'),(1440,275,'_elementor_version','3.15.3'),(1441,275,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1442,275,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1443,275,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1444,276,'_wp_attached_file','2023/06/noha-1.webp'),(1445,276,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:170;s:4:\"file\";s:19:\"2023/06/noha-1.webp\";s:8:\"filesize\";i:17480;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"noha-1-300x102.webp\";s:5:\"width\";i:300;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11136;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"noha-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9454;}}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:{}}}'),(1446,276,'_wp_attachment_image_alt','at home by noha International'),(1447,277,'_wp_page_template','elementor_canvas'),(1448,277,'_elementor_edit_mode','builder'),(1449,277,'_elementor_template_type','wp-post'),(1450,277,'_elementor_version','3.14.0'),(1451,277,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1452,277,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"\",\"color_menu_item_active\":\"\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"\",\"color_dropdown_item_hover\":\"\",\"color_dropdown_item\":\"\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"\",\"toggle_color\":\"\"},\"resp_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Marcellus\",\"menu_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#EF529D\",\"color_menu_item_hover\":\"#D59999\",\"color_menu_item_active\":\"#D59999\",\"color_dropdown_item\":\"#EF529D\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#D59999\",\"color_dropdown_item_active\":\"#D59999\",\"divider_border_color\":\"#5E0826\",\"toggle_color\":\"#EF529D\",\"all_text_color\":\"#FFFFFF\",\"all_background_color_color\":\"#EF529D\",\"all_border_color\":\"#D59999\",\"all_hover_color\":\"#EF529D\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_border_hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1453,277,'_elementor_page_assets','a:0:{}'),(1455,278,'_wp_page_template','elementor_canvas'),(1456,278,'_elementor_edit_mode','builder'),(1457,278,'_elementor_template_type','wp-post'),(1458,278,'_elementor_version','3.14.0'),(1459,278,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1460,278,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":155,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"\",\"color_menu_item_active\":\"\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"\",\"color_dropdown_item_hover\":\"\",\"color_dropdown_item\":\"\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"\",\"toggle_color\":\"\"},\"resp_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Marcellus\",\"menu_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#EF529D\",\"color_menu_item_hover\":\"#D59999\",\"color_menu_item_active\":\"#D59999\",\"color_dropdown_item\":\"#EF529D\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#D59999\",\"color_dropdown_item_active\":\"#D59999\",\"divider_border_color\":\"#5E0826\",\"toggle_color\":\"#EF529D\",\"all_text_color\":\"#FFFFFF\",\"all_background_color_color\":\"#EF529D\",\"all_border_color\":\"#D59999\",\"all_hover_color\":\"#EF529D\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_border_hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1461,278,'_elementor_page_assets','a:0:{}'),(1463,279,'_wp_page_template','elementor_canvas'),(1464,279,'_elementor_edit_mode','builder'),(1465,279,'_elementor_template_type','wp-post'),(1466,279,'_elementor_version','3.14.0'),(1467,279,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1468,279,'_elementor_data','[{\"id\":\"64ffb8e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e0476b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"574af045\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":276,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/noha-1.webp\",\"alt\":\"at home by noha International\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6fa12a56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7e843572\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu\",\"menu_last_item\":\"cta\",\"navmenu_align\":\"right\",\"menu_space_between\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"dropdown_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":10,\"spread\":0,\"color\":\"rgba(231.74999999999997, 231.74999999999997, 231.74999999999997, 0.34)\"},\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"30\",\"bottom\":\"13\",\"left\":\"30\",\"isLinked\":false},\"all_background_color_background\":\"classic\",\"all_border_border\":\"solid\",\"all_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"all_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"all_background_hover_color_background\":\"classic\",\"__globals__\":{\"menu_typography_typography\":\"globals\\/typography?id=c3b6dfb\",\"color_menu_item\":\"\",\"color_menu_item_active\":\"\",\"background_color_dropdown_item\":\"globals\\/colors?id=30e5369\",\"all_background_color_color\":\"\",\"all_text_color\":\"globals\\/colors?id=30e5369\",\"all_border_color\":\"globals\\/colors?id=secondary\",\"all_background_hover_color_color\":\"globals\\/colors?id=30e5369\",\"all_hover_color\":\"\",\"color_dropdown_item_hover\":\"\",\"color_dropdown_item\":\"\",\"divider_border_color\":\"globals\\/colors?id=primary\",\"color_dropdown_item_active\":\"\",\"toggle_color\":\"\"},\"resp_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Marcellus\",\"menu_typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"menu_typography_font_weight\":\"500\",\"menu_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"menu_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"color_menu_item\":\"#EF529D\",\"color_menu_item_hover\":\"#D59999\",\"color_menu_item_active\":\"#D59999\",\"color_dropdown_item\":\"#EF529D\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#D59999\",\"color_dropdown_item_active\":\"#D59999\",\"divider_border_color\":\"#5E0826\",\"toggle_color\":\"#EF529D\",\"all_text_color\":\"#FFFFFF\",\"all_background_color_color\":\"#EF529D\",\"all_border_color\":\"#D59999\",\"all_hover_color\":\"#EF529D\",\"all_background_hover_color_color\":\"#FFFFFF\",\"all_border_hover_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1469,279,'_elementor_page_assets','a:0:{}'),(1472,280,'_edit_lock','1694580430:1'),(1473,9,'_elementor_css','a:6:{s:4:\"time\";i:1694583084;s:5:\"fonts\";a:3:{i:0;s:9:\"Marcellus\";i:2;s:7:\"Sarabun\";i:9;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1474,139,'_elementor_css','a:6:{s:4:\"time\";i:1694583085;s:5:\"fonts\";a:1:{i:0;s:9:\"Marcellus\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:8:\"fa-solid\";i:6;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1475,141,'_elementor_css','a:6:{s:4:\"time\";i:1694583086;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1477,281,'_wp_attached_file','2023/06/at-home-noha-international.webp'),(1478,281,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:170;s:4:\"file\";s:39:\"2023/06/at-home-noha-international.webp\";s:8:\"filesize\";i:7662;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"at-home-noha-international-300x102.webp\";s:5:\"width\";i:300;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6894;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"at-home-noha-international-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5552;}}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:{}}}'),(1479,281,'_wp_attachment_image_alt','at home noha international'),(1480,282,'_wp_page_template','elementor_canvas'),(1481,282,'_elementor_edit_mode','builder'),(1482,282,'_elementor_template_type','wp-post'),(1483,282,'_elementor_version','3.14.0'),(1484,282,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1485,282,'_elementor_data','[{\"id\":\"5515e76\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"e7f832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3cde1e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"f1fd7c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e651ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":151,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International.png\",\"alt\":\"Noha International\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"139517ff\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"802b9f0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"0afbf97\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ec310cc\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.29999999999999999,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"},\"align_mobile\":\"center\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_primary_color\":\"#EF529D\",\"hover_primary_color\":\"#FFFFFF\",\"hover_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"268ef033\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22.527000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57eca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a420727\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"70685153\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20.817,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b70d719\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f4b71fa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f7f0e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":31.655999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"17bd195a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78218c72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"57d6461\"},{\"text\":\"+375(76) 878-76-76<br>contact@esseine.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"4baaf7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63719ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2023 Noha International \\u2022 All Rights Reserved\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=897f75f\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1486,282,'_elementor_page_assets','a:0:{}'),(1487,282,'_elementor_css','a:6:{s:4:\"time\";i:1694583086;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:9:\"fa-brands\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1488,283,'_wp_page_template','elementor_canvas'),(1489,283,'_elementor_edit_mode','builder'),(1490,283,'_elementor_template_type','wp-post'),(1491,283,'_elementor_version','3.14.0'),(1492,283,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1493,283,'_elementor_data','[{\"id\":\"5515e76\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"e7f832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3cde1e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"f1fd7c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e651ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":151,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Noha-International.png\",\"alt\":\"Noha International\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"139517ff\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"802b9f0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"0afbf97\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ec310cc\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.29999999999999999,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"},\"align_mobile\":\"center\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_primary_color\":\"#EF529D\",\"hover_primary_color\":\"#FFFFFF\",\"hover_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"268ef033\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22.527000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57eca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a420727\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"70685153\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20.817,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b70d719\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f4b71fa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f7f0e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":31.655999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"17bd195a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78218c72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"57d6461\"},{\"text\":\"+375(76) 878-76-76<br>contact@esseine.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"4baaf7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63719ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2023 Noha International \\u2022 All Rights Reserved\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=897f75f\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1494,283,'_elementor_page_assets','a:0:{}'),(1495,283,'_elementor_css','a:6:{s:4:\"time\";i:1694583086;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:9:\"fa-brands\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1496,284,'_wp_page_template','elementor_canvas'),(1497,284,'_elementor_edit_mode','builder'),(1498,284,'_elementor_template_type','wp-post'),(1499,284,'_elementor_version','3.14.0'),(1500,284,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1501,284,'_elementor_data','[{\"id\":\"5515e76\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#EF529D\"},\"elements\":[{\"id\":\"e7f832\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3cde1e0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"f1fd7c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e651ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":281,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/at-home-noha-international.webp\",\"alt\":\"at home noha international\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"align_mobile\":\"center\",\"width\":{\"unit\":\"%\",\"size\":66,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"139517ff\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"802b9f0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"0afbf97\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ec310cc\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.29999999999999999,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"\"},\"align_mobile\":\"center\",\"icon_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_primary_color\":\"#EF529D\",\"hover_primary_color\":\"#FFFFFF\",\"hover_secondary_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"268ef033\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22.527000000000001,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b57eca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a420727\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"70685153\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":20.817,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":20,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b70d719\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f4b71fa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"95e4c0c\"},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"beaefd5\"},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc0fa92\"},{\"_id\":\"bc05d2e\",\"text\":\"Package\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f7f0e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":31.655999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"17bd195a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=d6ab604\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78218c72\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"57d6461\"},{\"text\":\"+375(76) 878-76-76<br>contact@esseine.com\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"4baaf7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"icon_align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"63719ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2023 Noha International \\u2022 All Rights Reserved\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=897f75f\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1502,284,'_elementor_page_assets','a:0:{}'),(1503,284,'_elementor_css','a:6:{s:4:\"time\";i:1694583086;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:9:\"fa-brands\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1504,148,'_elementor_css','a:6:{s:4:\"time\";i:1694583209;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:9:\"fa-brands\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1505,113,'_elementor_css','a:6:{s:4:\"time\";i:1694583422;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1516,286,'_wp_page_template','elementor_header_footer'),(1517,286,'_elementor_edit_mode','builder'),(1518,286,'_elementor_template_type','wp-page'),(1519,286,'_elementor_version','3.15.3'),(1520,286,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1521,286,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1522,286,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1523,286,'_elementor_css','a:6:{s:4:\"time\";i:1694757537;s:5:\"fonts\";a:1:{i:0;s:9:\"Marcellus\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1524,287,'_wp_page_template','elementor_header_footer'),(1525,287,'_elementor_edit_mode','builder'),(1526,287,'_elementor_template_type','wp-page'),(1527,287,'_elementor_version','3.15.3'),(1528,287,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1529,287,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1530,287,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1531,287,'_elementor_css','a:6:{s:4:\"time\";i:1694757537;s:5:\"fonts\";a:1:{i:0;s:9:\"Marcellus\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1532,288,'_wp_page_template','elementor_header_footer'),(1533,288,'_elementor_edit_mode','builder'),(1534,288,'_elementor_template_type','wp-page'),(1535,288,'_elementor_version','3.15.3'),(1536,288,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1537,288,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"editor\":\"<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1538,288,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1539,288,'_elementor_css','a:6:{s:4:\"time\";i:1694757537;s:5:\"fonts\";a:1:{i:0;s:9:\"Marcellus\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1540,289,'_wp_attached_file','2023/09/placeholder-54.png'),(1541,289,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/09/placeholder-54.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-54-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-54-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-54-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-54-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}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:{}}}'),(1542,289,'_elementor_source_image_hash','8012d19c3155eecdabafa675c94ee8a0c59ea931'),(1543,290,'_wp_attached_file','2023/09/image-accordion-7.jpg'),(1544,290,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:483;s:6:\"height\";i:460;s:4:\"file\";s:29:\"2023/09/image-accordion-7.jpg\";s:8:\"filesize\";i:42395;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"image-accordion-7-300x286.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9098;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"image-accordion-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3477;}}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:{}}}'),(1545,290,'_elementor_source_image_hash','dbae0b31f12e737e230644d79693db5ca32632df'),(1546,291,'_wp_attached_file','2023/09/image-accordion-14.jpg'),(1547,291,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:483;s:6:\"height\";i:460;s:4:\"file\";s:30:\"2023/09/image-accordion-14.jpg\";s:8:\"filesize\";i:45545;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"image-accordion-14-300x286.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20087;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"image-accordion-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6542;}}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:{}}}'),(1548,291,'_elementor_source_image_hash','6a0be60fa2717e1aa0e60ba001ab8dde5c9000e7'),(1549,292,'_wp_attached_file','2023/09/image-accordion-10.jpg'),(1550,292,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:483;s:6:\"height\";i:460;s:4:\"file\";s:30:\"2023/09/image-accordion-10.jpg\";s:8:\"filesize\";i:67425;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"image-accordion-10-300x286.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22854;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"image-accordion-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6145;}}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:{}}}'),(1551,292,'_elementor_source_image_hash','f612f58f16af0dd74fce694c959399f303cf41e8'),(1559,294,'_wp_attached_file','2023/09/Noha-Web-Creative.webp'),(1560,294,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:30:\"2023/09/Noha-Web-Creative.webp\";s:8:\"filesize\";i:29096;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Noha-Web-Creative-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8078;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"Noha-Web-Creative-1024x1024.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:34576;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Noha-Web-Creative-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3738;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Noha-Web-Creative-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25372;}}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:{}}}'),(1561,295,'_wp_attached_file','2023/09/Noha-Web-Creative-1.webp'),(1562,295,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:483;s:6:\"height\";i:460;s:4:\"file\";s:32:\"2023/09/Noha-Web-Creative-1.webp\";s:8:\"filesize\";i:10944;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Noha-Web-Creative-1-300x286.webp\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7534;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Noha-Web-Creative-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3638;}}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:{}}}'),(1563,296,'_wp_attached_file','2023/09/Noha-Web-Creative-2.webp'),(1564,296,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:483;s:6:\"height\";i:460;s:4:\"file\";s:32:\"2023/09/Noha-Web-Creative-2.webp\";s:8:\"filesize\";i:14944;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Noha-Web-Creative-2-300x286.webp\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9110;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Noha-Web-Creative-2-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3846;}}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:{}}}'),(1565,297,'_wp_page_template','elementor_header_footer'),(1566,297,'_elementor_edit_mode','builder'),(1567,297,'_elementor_template_type','wp-page'),(1568,297,'_elementor_version','3.16.3'),(1569,297,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1570,297,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"editor\":\"<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1571,297,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1572,298,'_wp_page_template','elementor_header_footer'),(1573,298,'_elementor_edit_mode','builder'),(1574,298,'_elementor_template_type','wp-page'),(1575,298,'_elementor_version','3.16.3'),(1576,298,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1577,298,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"editor\":\"<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1578,298,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1579,299,'_wp_page_template','elementor_header_footer'),(1580,299,'_elementor_edit_mode','builder'),(1581,299,'_elementor_template_type','wp-page'),(1582,299,'_elementor_version','3.16.3'),(1583,299,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1584,299,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"editor\":\"<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bba110\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F7F9FB\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a9bfd69\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2fbe7125\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"edc2662\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"355367fc\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Parlor At Home\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"cf02170\"}],\"ekit_heading_seperator_image\":{\"id\":\"289\",\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/placeholder-54.png\"},\"ekit_heading_title_color\":\"#EF529D\",\"ekit_heading_title_color_mobile\":\"#EF529D\",\"ekit_heading_seperator_color\":\"#DA2A7E\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6c1297f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"a1b40bf\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c38470a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"d058dc1\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"76a1555e\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":295,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Premium Services\",\"ekit_image_box_description_text\":\"Do you know the Elementor image box height? Offering the best image box wordpress plugin.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"15e30f3\"}],\"ekit_image_box_icons\":{\"value\":\"fasicon icon-poop\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"ekit_image_box_icons\":true}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"68750fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"5b704a0\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"64e45795\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":296,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Basic Services \",\"ekit_image_box_description_text\":\"Do you know how to add image box in Wordpress website with elementary. Download Elementskit.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_title_size\":\"h5\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"0211a65\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1585,299,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1586,300,'_wp_page_template','elementor_header_footer'),(1587,300,'_elementor_edit_mode','builder'),(1588,300,'_elementor_template_type','wp-page'),(1589,300,'_elementor_version','3.16.3'),(1590,300,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1591,300,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"editor\":\"<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bba110\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F7F9FB\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a9bfd69\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2fbe7125\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"edc2662\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"355367fc\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Parlor At Home\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"cf02170\"}],\"ekit_heading_seperator_image\":{\"id\":\"289\",\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/placeholder-54.png\"},\"ekit_heading_title_color\":\"#EF529D\",\"ekit_heading_title_color_mobile\":\"#EF529D\",\"ekit_heading_seperator_color\":\"#DA2A7E\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6c1297f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"a1b40bf\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c38470a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"d058dc1\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"76a1555e\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":295,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Premium Services\",\"ekit_image_box_description_text\":\"Do you know the Elementor image box height? Offering the best image box wordpress plugin.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"15e30f3\"}],\"ekit_image_box_icons\":{\"value\":\"fasicon icon-poop\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"ekit_image_box_icons\":true}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"68750fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"5b704a0\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"64e45795\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":296,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Basic Services \",\"ekit_image_box_description_text\":\"Do you know how to add image box in Wordpress website with elementary. Download Elementskit.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_title_size\":\"h5\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"0211a65\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1592,300,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1593,301,'_wp_page_template','elementor_header_footer'),(1594,301,'_elementor_edit_mode','builder'),(1595,301,'_elementor_template_type','wp-page'),(1596,301,'_elementor_version','3.16.3'),(1597,301,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1598,301,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"editor\":\"<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bba110\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F7F9FB\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a9bfd69\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2fbe7125\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"edc2662\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"355367fc\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Parlor At Home\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"cf02170\"}],\"ekit_heading_seperator_image\":{\"id\":\"289\",\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/placeholder-54.png\"},\"ekit_heading_title_color\":\"#EF529D\",\"ekit_heading_title_color_mobile\":\"#EF529D\",\"ekit_heading_seperator_color\":\"#DA2A7E\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6c1297f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"a1b40bf\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c38470a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"d058dc1\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"76a1555e\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":295,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Premium Services\",\"ekit_image_box_description_text\":\"Do you know the Elementor image box height? Offering the best image box wordpress plugin.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"15e30f3\"}],\"ekit_image_box_icons\":{\"value\":\"fasicon icon-poop\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"ekit_image_box_icons\":true}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"68750fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"5b704a0\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"64e45795\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":296,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Basic Services \",\"ekit_image_box_description_text\":\"Do you know how to add image box in Wordpress website with elementary. Download Elementskit.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_title_size\":\"h5\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"0211a65\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1599,301,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1600,302,'_wp_page_template','elementor_header_footer'),(1601,302,'_elementor_edit_mode','builder'),(1602,302,'_elementor_template_type','wp-page'),(1603,302,'_elementor_version','3.16.3'),(1604,302,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1605,302,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"editor\":\"<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bba110\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F7F9FB\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a9bfd69\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2fbe7125\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"edc2662\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"355367fc\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Parlor At Home\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"cf02170\"}],\"ekit_heading_seperator_image\":{\"id\":\"289\",\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/placeholder-54.png\"},\"ekit_heading_title_color\":\"#EF529D\",\"ekit_heading_title_color_mobile\":\"#EF529D\",\"ekit_heading_seperator_color\":\"#DA2A7E\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6c1297f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"a1b40bf\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c38470a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"d058dc1\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"76a1555e\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":295,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Premium Services\",\"ekit_image_box_description_text\":\"Indulge in opulent pampering at our premium parlor services.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"15e30f3\"}],\"ekit_image_box_icons\":{\"value\":\"fasicon icon-poop\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"ekit_image_box_icons\":true}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"68750fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"5b704a0\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"64e45795\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":296,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Basic Services \",\"ekit_image_box_description_text\":\"Elevate your style with essential salon treatments and pampering.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_title_size\":\"h5\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"0211a65\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1606,302,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1614,304,'_wp_page_template','elementor_header_footer'),(1615,304,'_elementor_edit_mode','builder'),(1616,304,'_elementor_template_type','wp-page'),(1617,304,'_elementor_version','3.16.3'),(1618,304,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1619,304,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"editor\":\"<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bba110\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F7F9FB\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a9bfd69\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2fbe7125\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"edc2662\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"355367fc\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Parlor At Home\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"cf02170\"}],\"ekit_heading_seperator_image\":{\"id\":\"289\",\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/placeholder-54.png\"},\"ekit_heading_title_color\":\"#EF529D\",\"ekit_heading_title_color_mobile\":\"#EF529D\",\"ekit_heading_seperator_color\":\"#DA2A7E\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6c1297f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"a1b40bf\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c38470a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"d058dc1\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"76a1555e\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":295,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Premium Services\",\"ekit_image_box_description_text\":\"Indulge in opulent pampering at our premium parlor services.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"15e30f3\"}],\"ekit_image_box_icons\":{\"value\":\"fasicon icon-poop\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"ekit_image_box_icons\":true}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"68750fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"5b704a0\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"64e45795\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":296,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Basic Services \",\"ekit_image_box_description_text\":\"Elevate your style with essential salon treatments and pampering.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_title_size\":\"h5\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"0211a65\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1620,304,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1621,305,'_wp_page_template','elementor_header_footer'),(1622,305,'_elementor_edit_mode','builder'),(1623,305,'_elementor_template_type','wp-page'),(1624,305,'_elementor_version','3.16.3'),(1625,305,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (1626,305,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"editor\":\"<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bba110\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F7F9FB\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a9bfd69\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2fbe7125\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"edc2662\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"355367fc\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Parlor At Home\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"cf02170\"}],\"ekit_heading_seperator_image\":{\"id\":\"289\",\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/placeholder-54.png\"},\"ekit_heading_title_color\":\"#EF529D\",\"ekit_heading_title_color_mobile\":\"#EF529D\",\"ekit_heading_seperator_color\":\"#DA2A7E\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6c1297f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"a1b40bf\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c38470a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"d058dc1\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"76a1555e\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":295,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Premium Services\",\"ekit_image_box_description_text\":\"Indulge in opulent pampering at our premium parlor services.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"15e30f3\"}],\"ekit_image_box_icons\":{\"value\":\"fasicon icon-poop\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"ekit_image_box_icons\":true}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"68750fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"5b704a0\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"64e45795\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":296,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Basic Services \",\"ekit_image_box_description_text\":\"Elevate your style with essential salon treatments and pampering.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_title_size\":\"h5\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"0211a65\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1627,305,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1628,306,'_wp_page_template','elementor_header_footer'),(1629,306,'_elementor_edit_mode','builder'),(1630,306,'_elementor_template_type','wp-page'),(1631,306,'_elementor_version','3.16.3'),(1632,306,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1633,306,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"editor\":\"<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bba110\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F7F9FB\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a9bfd69\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2fbe7125\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"edc2662\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"355367fc\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Parlor At Home\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"cf02170\"}],\"ekit_heading_seperator_image\":{\"id\":\"289\",\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/placeholder-54.png\"},\"ekit_heading_title_color\":\"#EF529D\",\"ekit_heading_title_color_mobile\":\"#EF529D\",\"ekit_heading_seperator_color\":\"#DA2A7E\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6c1297f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"a1b40bf\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c38470a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"d058dc1\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"76a1555e\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":295,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Premium Services\",\"ekit_image_box_description_text\":\"Indulge in opulent pampering at our premium parlor services.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#EF529D\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"15e30f3\"}],\"ekit_image_box_icons\":{\"value\":\"fasicon icon-poop\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"ekit_image_box_icons\":true}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"68750fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"5b704a0\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"64e45795\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":296,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Basic Services \",\"ekit_image_box_description_text\":\"Elevate your style with essential salon treatments and pampering.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#EF529D\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_title_size\":\"h5\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"0211a65\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1634,306,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1635,307,'_wp_page_template','elementor_header_footer'),(1636,307,'_elementor_edit_mode','builder'),(1637,307,'_elementor_template_type','wp-page'),(1638,307,'_elementor_version','3.16.3'),(1639,307,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1640,307,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"editor\":\"<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bba110\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F7F9FB\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a9bfd69\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2fbe7125\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"edc2662\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"355367fc\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Parlor At Home\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"cf02170\"}],\"ekit_heading_seperator_image\":{\"id\":\"289\",\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/placeholder-54.png\"},\"ekit_heading_title_color\":\"#EF529D\",\"ekit_heading_title_color_mobile\":\"#EF529D\",\"ekit_heading_seperator_color\":\"#DA2A7E\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6c1297f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"a1b40bf\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c38470a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"d058dc1\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"76a1555e\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":295,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Premium Services\",\"ekit_image_box_description_text\":\"Indulge in opulent pampering at our premium parlor services.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#EF529D\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"15e30f3\"}],\"ekit_image_box_icons\":{\"value\":\"fasicon icon-poop\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"ekit_image_box_icons\":true}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"68750fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"5b704a0\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"64e45795\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":296,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Basic Services \",\"ekit_image_box_description_text\":\"Elevate your style with essential salon treatments and pampering.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#EF529D\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_title_size\":\"h5\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"0211a65\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1641,307,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1642,308,'_wp_page_template','elementor_header_footer'),(1643,308,'_elementor_edit_mode','builder'),(1644,308,'_elementor_template_type','wp-page'),(1645,308,'_elementor_version','3.16.3'),(1646,308,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1647,308,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"editor\":\"<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bba110\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F7F9FB\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a9bfd69\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2fbe7125\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"edc2662\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"355367fc\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Parlor At Home\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"cf02170\"}],\"ekit_heading_seperator_image\":{\"id\":\"289\",\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/placeholder-54.png\"},\"ekit_heading_title_color\":\"#EF529D\",\"ekit_heading_title_color_mobile\":\"#EF529D\",\"ekit_heading_seperator_color\":\"#DA2A7E\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6c1297f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"a1b40bf\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c38470a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"d058dc1\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"76a1555e\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":295,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Premium Services\",\"ekit_image_box_description_text\":\"Indulge in opulent pampering at our premium parlor services.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#EF529D\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"15e30f3\"}],\"ekit_image_box_icons\":{\"value\":\"fasicon icon-poop\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"ekit_image_box_icons\":true}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"68750fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"5b704a0\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"64e45795\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":296,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Basic Services \",\"ekit_image_box_description_text\":\"Elevate your style with essential salon treatments and pampering.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#EF529D\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_title_size\":\"h5\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"0211a65\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1648,308,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1649,309,'_wp_page_template','elementor_header_footer'),(1650,309,'_elementor_edit_mode','builder'),(1651,309,'_elementor_template_type','wp-page'),(1652,309,'_elementor_version','3.16.3'),(1653,309,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1654,309,'_elementor_data','[{\"id\":\"fc2848c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"397f4ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.603999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"eeb6cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":228,\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/Icon-2-01-scaled.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_z_index\":0,\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-251,\"unit\":\"px\"},\"_offset_y\":{\"size\":-108,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":322},\"_offset_x_tablet\":{\"size\":-153,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-84,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-434,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65968d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Love Yourself With Beauty Treatment\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"500\",\"header_size\":\"h1\",\"align_mobile\":\"center\",\"_z_index\":1,\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":500,\"title_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a59b74\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":700,\"editor\":\"<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c1b0e2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#EF529D\",\"hover_color\":\"#EF529D\",\"button_background_hover_color\":\"#FDFDFD\",\"button_hover_border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d429174\",\"elType\":\"widget\",\"settings\":{\"text\":\"Login Now\",\"__globals__\":{\"button_text_color\":\"\",\"background_color\":\"globals\\/colors?id=cfd96a7\",\"hover_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"button_text_color\":\"#EF529D\",\"background_color\":\"#02010100\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#EF529D\",\"border_border\":\"solid\",\"border_color\":\"#EF529D\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cd346a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.396000000000001,\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"04b8023\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":74.391000000000005},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":69},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":-33,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":223,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":92,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":47,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5a40552\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"15\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":43.390999999999998},\"_position\":\"absolute\",\"_offset_x_tablet\":{\"size\":194,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":16,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-59,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":39,\"unit\":\"px\"},\"hide_desktop\":\"hidden-desktop\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e632f08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"21\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":74,\"sizes\":[]},\"_z_index\":1,\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"40b3c16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"27\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\"},\"_z_index_mobile\":1,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"943d366\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_size\":\"cover\",\"_mask_position\":\"top center\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":700.5},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-50,\"unit\":\"px\"},\"_offset_y\":{\"size\":59,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":395.5},\"_offset_x_tablet\":{\"size\":-103,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":129,\"unit\":\"px\"},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":335.5},\"_offset_x_mobile\":{\"size\":-21,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":124,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bba110\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F7F9FB\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"a9bfd69\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2fbe7125\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"edc2662\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"355367fc\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Parlor At Home\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"cf02170\"}],\"ekit_heading_seperator_image\":{\"id\":\"289\",\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/placeholder-54.png\"},\"ekit_heading_title_color\":\"#EF529D\",\"ekit_heading_title_color_mobile\":\"#EF529D\",\"ekit_heading_seperator_color\":\"#DA2A7E\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6c1297f7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"a1b40bf\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6c38470a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"d058dc1\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"76a1555e\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":295,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Premium Services\",\"ekit_image_box_description_text\":\"Indulge in opulent pampering at our premium parlor services.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#EF529D\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"15e30f3\"}],\"ekit_image_box_front_title_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_image_box_icons\":{\"value\":\"fasicon icon-poop\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"ekit_image_box_icons\":true}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"68750fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"5b704a0\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"64e45795\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":296,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/09\\/Noha-Web-Creative-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"Basic Services \",\"ekit_image_box_description_text\":\"Elevate your style with essential salon treatments and pampering.\",\"ekit_image_box_btn_text\":\"Read More\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"#ffffff\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#EF529D\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_accordion_content_background_background\":\"classic\",\"ekit_accordion_content_background_color\":\"#ffffff\",\"ekit_image_box_button_border_color_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_image_box_button_border_color_group_color\":\"#f7f9fb\",\"ekit_image_box_btn_hover_color\":\"#ffffff\",\"ekit_image_box_btn_background_hover_group_background\":\"classic\",\"ekit_image_box_btn_background_hover_group_color\":\"#2575fc\",\"ekit_image_box_image_scale_on_hover\":{\"unit\":\"px\",\"size\":\"1.01\"},\"ekit_imagebox_container_background_background\":\"classic\",\"ekit_imagebox_container_background_color\":\"#ffffff\",\"ekit_imagebox_container_spacing\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"35\",\"bottom\":\"30\",\"left\":\"35\",\"isLinked\":\"\"},\"ekit_image_box_button_border_color_group_border\":\"solid\",\"ekit_image_box_border_hover_background_background\":\"classic\",\"ekit_image_box_border_hover_background_color\":\"#2575fc\",\"ekit_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_image_box_shadow_group_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_line_width\":{\"unit\":\"px\",\"size\":\"36\"},\"ekit_image_box_image_shadow_left_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_left_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_left_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_left_line_background_color\":\"#ffffff\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_shadow_right_line_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_shadow_right_line_background_background\":\"classic\",\"ekit_image_box_image_shadow_right_line_background_color\":\"#ffffff\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_image_box_image_classic_curves_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"-20\"},\"ekit_image_box_info_hover_hidden_content_type\":\"fly-from-right\",\"ekit_image_box_image_side_line_border_border\":\"solid\",\"ekit_image_box_image_side_line_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":\"\"},\"ekit_image_box_image_side_line_border_color\":\"#2575fc\",\"ekit_image_box_style\":\"parallax-card\",\"ekit_image_box_info_style_hover_effect\":\"bg-card\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_front_button_icon\":\"icon icon-up-arrow1\",\"ekit_image_box_icon\":\"icon icon-poop\",\"ekit_image_box_title_size\":\"h5\",\"ekit_image_box_style_simple\":\"floating-style\",\"ekit_image_box_image_floating_box_background_background\":\"classic\",\"ekit_image_box_image_floating_box_background_color\":\"#ffffff\",\"ekit_image_box_image_floating_box_shadow_box_shadow_type\":\"yes\",\"ekit_image_box_image_floating_box_shadow_box_shadow\":{\"horizontal\":\"-1.21\",\"vertical\":\"6.894\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.07)\"},\"ekit_image_box_image_floating_box_hover_height\":{\"unit\":\"px\",\"size\":\"211\"},\"ekit_image_box_heading_icon_color\":\"#23a455\",\"ekit_image_box_title_typography_typography\":\"custom\",\"ekit_image_box_image_floating_box_icon_color\":\"#000000\",\"ekit_image_box_image_floating_box_icon_color_hover\":\"#2575fc\",\"ekit_imagebox_container_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":\"1\"},\"ekit_image_box_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_image_box_title_bottom_space_description\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_tablet\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_height_mobile\":{\"unit\":\"px\",\"size\":\"60\",\"sizes\":[]},\"ekit_image_box_image_floating_box_hover_height_mobile\":{\"unit\":\"px\",\"size\":\"150\",\"sizes\":[]},\"ekit_all_conditions_list\":[{\"_id\":\"0211a65\"}],\"ekit_image_box_front_title_icons\":{\"value\":\"\",\"library\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60603f16\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"409f79f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e63a294\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3849e6b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"2be9eb4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"18\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\"},\"title_text\":\"Face Facial \",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"67d88f22\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69e097a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"23\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\"},\"title_text\":\"Lomilomi Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4c12fce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"57222b55\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"28\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\"},\"title_text\":\"Wellness Relaxing\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19e2c5b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4559fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f0bdb7e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\"},\"title_text\":\"Detoxifying\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3030ad55\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b5dbae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\"},\"title_text\":\"Body Massage\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47422aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15f1ecc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"57\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\"},\"title_text\":\"Sauna\",\"description_text\":\"Lorem ipsum dolor sit amet consectetur adipiscing.\",\"position\":\"left\",\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"362055c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dc09313\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.759,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\"},\"elements\":[{\"id\":\"617b78d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"17\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-setting-GTFJWQ4.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a363127\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"83\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-240\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-166\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"62766fbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.752000000000002,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"79c11cde\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beauty Services Are Our Priority\",\"align_mobile\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d6d562e\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4131874\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Body Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":88,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":900,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#EF529D\",\"typography_typography\":\"custom\",\"title_shadow_text_shadow_type\":\"yes\",\"title_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0, 0, 0, 0.3)\"}},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"a1ec344\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Face Treatment\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1000,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"937cfb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"inner_text\":\"Relaxtions\",\"bar_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bar_border_radius\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"_border_border\":\"solid\",\"_border_color\":\"#D59999\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"19\",\"bottom\":\"19\",\"left\":\"19\",\"isLinked\":true},\"percent\":{\"unit\":\"%\",\"size\":79,\"sizes\":[]},\"__globals__\":{\"bar_color\":\"globals\\/colors?id=accent\",\"bar_bg_color\":\"\",\"bar_inline_color\":\"\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":1100,\"bar_color\":\"#FFF0F3\",\"bar_bg_color\":\"#EF529D\",\"bar_inline_color\":\"#EF529D\",\"title_color\":\"#D59999\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74beaa3a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fda496\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a37fea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Treatment Package\",\"align\":\"center\",\"title_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f4c1166\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"61174876\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"17e2fb0d\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":3,\"vertical\":4,\"blur\":16,\"spread\":0,\"color\":\"rgba(229, 229, 229, 0.44)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca6e38b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6760bdab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"29\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"262d5a4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"782659f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"$40\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dabbe5f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b8dde5f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"typography_typography\":\"custom\",\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"473df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"7f9b6947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/4625-Floating-Flowers.png\"},\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"597cd866\",\"elType\":\"widget\",\"settings\":{\"title\":\"Premium SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13b9e35\",\"elType\":\"widget\",\"settings\":{\"title\":\"$76\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"globals\\/colors?id=30e5369\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35e4f3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6c86a00b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"border_border\":\"solid\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=30e5369\",\"button_background_hover_color\":\"globals\\/colors?id=30e5369\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"27e66276\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"align\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6388b5c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\"},\"width\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"619ed8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard SPA Package\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2549999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72102532\",\"elType\":\"widget\",\"settings\":{\"title\":\"$56\",\"align\":\"center\",\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=aa5b00b\",\"title_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#F0519E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.3999999999999999,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e7ef1e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a50b054\",\"elType\":\"widget\",\"settings\":{\"text\":\"Booking Now\",\"align\":\"center\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"background_color\":\"#F0519E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a06aae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"background_color\":\"#F0519E\"},\"elements\":[{\"id\":\"2ef16b8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38797078\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"95\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":593},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-265,\"unit\":\"px\"},\"_offset_y\":{\"size\":-105,\"unit\":\"px\"},\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":458},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":409},\"_offset_x_tablet\":{\"size\":-200,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-177,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-98,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-100,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6da79852\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"347286ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=30e5369\"},\"_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\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15454fc0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"193e3bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"f7b3042\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"98\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-eye-logo-VXUKND-2018-11-20.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"632e865f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"46af0876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"103\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"194e71a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fcfb980\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"110\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-rose-flower-logo-Q83854-2017-10-29.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"575d8a33\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4835872c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"112\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\"},\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1655,309,'_elementor_page_assets','a:1:{s:6:\"styles\";a:8:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";}}'),(1656,310,'_edit_lock','1694784252:1'),(1657,310,'_wp_page_template','elementor_header_footer'),(1658,310,'_elementor_edit_mode','builder'),(1659,310,'_elementor_template_type','wp-page'),(1660,310,'_elementor_version','3.16.3'),(1661,124,'_elementor_css','a:6:{s:4:\"time\";i:1694770713;s:5:\"fonts\";a:1:{i:0;s:9:\"Marcellus\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1662,124,'ekit_post_views_count','1'),(1663,167,'_elementor_css','a:6:{s:4:\"time\";i:1694772463;s:5:\"fonts\";a:1:{i:0;s:9:\"Marcellus\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1664,100,'_elementor_css','a:6:{s:4:\"time\";i:1694784301;s:5:\"fonts\";a:1:{i:0;s:9:\"Marcellus\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:6;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1665,100,'ekit_post_views_count','1'),(1673,313,'_wp_page_template','elementor_header_footer'),(1674,313,'_elementor_edit_mode','builder'),(1675,313,'_elementor_template_type','wp-page'),(1676,313,'_elementor_version','3.16.3'),(1677,314,'_wp_page_template','elementor_header_footer'),(1678,314,'_elementor_edit_mode','builder'),(1679,314,'_elementor_template_type','wp-page'),(1680,314,'_elementor_version','3.16.3'),(1681,310,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1682,310,'_elementor_data','[{\"id\":\"61ed428a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"2e312b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c2c3caf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4aac3d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"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\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"75289854\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e6df236\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1466593d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20888c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b1ac2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"105f1186\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nFace Facial\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56844089\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 26\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"160\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"107ce3f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"541fce75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fd3e5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fb2c02\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d7704e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3294cd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72dc4dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"24481fc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Detoxifying\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18364e1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 23\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"148\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2442952b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"760561e1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c557715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"64fd5571\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ffa8841\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"75f1af6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d368e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"20416f30\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e3f3144\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lomilomi Massage\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"481c9da\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 32\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c94684b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e42ac0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"392c4e69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68e684ad\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56464e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d5cb29b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5dc0470d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52bba032\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Massage\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a0ebb1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 21\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"313e9b4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f449423\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6d8eaa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7358f026\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8593d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"62a0bc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a49c816\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ec7320b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"215c3de1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness Relaxing\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cb979dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 22\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"84\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23bd69c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"26b32bff\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"57c53302\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a818b48\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1d695f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7da3d828\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bf0fa57\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48959997\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f0cb088\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 34\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"210\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4581c92d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75fa1a8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19bcd293\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"679af5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"30d4d627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70aab01a\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1631759838552\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11c2bb5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"807b3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52095858\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"42e2ef0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_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\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"12a19be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":55,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6850fa3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":359.983},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-800.976,\"unit\":\"px\"},\"_offset_y\":{\"size\":-20.013999999999999,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c4fb373\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Question\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60ed22a6\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#5E0826\",\"tab_active_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1683,315,'_wp_page_template','elementor_header_footer'),(1684,315,'_elementor_edit_mode','builder'),(1685,315,'_elementor_template_type','wp-page'),(1686,315,'_elementor_version','3.16.3'),(1687,315,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1688,315,'_elementor_data','[{\"id\":\"61ed428a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[{\"id\":\"2e312b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c2c3caf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4aac3d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"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\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"75289854\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e6df236\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1466593d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20888c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b1ac2b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"105f1186\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nFace Facial\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56844089\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 26\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"160\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"107ce3f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"541fce75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fd3e5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fb2c02\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d7704e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3294cd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72dc4dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"24481fc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Detoxifying\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18364e1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 23\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"148\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2442952b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"760561e1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c557715\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"64fd5571\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ffa8841\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"75f1af6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d368e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"20416f30\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e3f3144\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lomilomi Massage\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"481c9da\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 32\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c94684b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e42ac0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"392c4e69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68e684ad\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56464e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d5cb29b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5dc0470d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52bba032\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body Massage\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a0ebb1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 21\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"125\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"313e9b4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f449423\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f6d8eaa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7358f026\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8593d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"62a0bc52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a49c816\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ec7320b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"215c3de1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness Relaxing\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cb979dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 22\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"84\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23bd69c6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"26b32bff\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"57c53302\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a818b48\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1d695f0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7da3d828\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bf0fa57\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48959997\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sauna\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f0cb088\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 34\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"210\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4581c92d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75fa1a8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19bcd293\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"679af5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"30d4d627\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70aab01a\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1631759838552\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11c2bb5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"807b3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52095858\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"42e2ef0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_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\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"12a19be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":55,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6850fa3f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":359.983},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-800.976,\"unit\":\"px\"},\"_offset_y\":{\"size\":-20.013999999999999,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c4fb373\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Question\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60ed22a6\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#5E0826\",\"tab_active_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1689,310,'_elementor_page_assets','a:0:{}'),(1690,310,'_eael_custom_js',''),(1691,316,'_edit_lock','1695021366:1'),(1692,316,'_wp_page_template','elementor_header_footer'),(1693,316,'_elementor_edit_mode','builder'),(1694,316,'_elementor_template_type','wp-page'),(1695,316,'_elementor_version','3.16.3'),(1703,319,'_wp_page_template','elementor_header_footer'),(1704,319,'_elementor_edit_mode','builder'),(1705,319,'_elementor_template_type','wp-page'),(1706,319,'_elementor_version','3.16.3'),(1707,320,'_wp_page_template','elementor_header_footer'),(1708,320,'_elementor_edit_mode','builder'),(1709,320,'_elementor_template_type','wp-page'),(1710,320,'_elementor_version','3.16.3'),(1711,316,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1712,316,'_elementor_data','[{\"id\":\"27f57f63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#EF529C\"},\"elements\":[{\"id\":\"1df3c6f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58472641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Services\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"212e67f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"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\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"694337b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75f8c369\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1610c5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7970b741\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"296db0e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a6e3ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Cut\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529C\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bb7772b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"group w-full text-token-text-primary border-b border-black\\/10 dark:border-gray-900\\/50 bg-gray-50 dark:bg-[#444654]\\\" data-testid=\\\"conversation-turn-3\\\"><div class=\\\"p-4 justify-center text-base md:gap-6 md:py-6 m-auto\\\"><div class=\\\"flex flex-1 gap-4 text-base mx-auto md:gap-6 md:max-w-2xl lg:max-w-[38rem] xl:max-w-3xl }\\\"><div class=\\\"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]\\\"><div class=\\\"flex flex-grow flex-col gap-3 max-w-full\\\"><div class=\\\"min-h-[20px] flex flex-col items-start gap-3 overflow-x-auto whitespace-pre-wrap break-words\\\"><div class=\\\"markdown prose w-full break-words dark:prose-invert light\\\"><p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c6d7741\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6f99f1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e14622f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"47234ed6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e2e97bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"64f6b880\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"211c2e21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Color\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e838a99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"435bd96c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49abcccf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c7e588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19445381\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d3c09dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35a2ee7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"757a9be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74cf8494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Spa\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c98a9d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22005ba9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e76d0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5df72ddd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b124c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f3463f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4006d66b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a9af8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Straightening\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16a5d313\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e1e3e21\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14a070dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b0c21d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2af9e329\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78d7a00d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"537916f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1bf213cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72b0cb78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body And Head Massage\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675ffbdd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for Body Scrub, Head Massage with Aroma\\/Olive Oil.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"72ec7b08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"23ead247\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53fe8234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-60\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10c95b76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4dbbe93d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"747bcf6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33879694\",\"elType\":\"widget\",\"settings\":{\"title\":\"Threading\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a209509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76ef24c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68cfff0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cfc2d82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85072e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ce872e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f8d612\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":111,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5905289\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0de97ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facial\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2021e8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9ce19c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e171b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67ab489\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ec5c2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d02de4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8247237\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"da7a4d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clean Up\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b700e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59e80d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d51902\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7acc2a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7631ace\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b07a3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb1393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ae718c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6d3d6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bleach And Detan\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86e5d51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for body and facial beauty treatments and services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8cddbb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"54ac285\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ca1816\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1184d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77f2297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"898cba5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f64c381\",\"elType\":\"widget\",\"settings\":{\"title\":\"Waxing\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f004c71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbd60fb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d9329cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77390\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bc825cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6068eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f434c65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d2e30e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Manicure And Pedicure\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6aecb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for foot and nail treatments, including massages and manicures.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9878e0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"db164c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"332a568\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83ddaed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75b9bb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df4ade5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"074c655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Makeup\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8dc13ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9dada02\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65a1867e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"70d5b092\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"17d8ea4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"517b4586\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1631759838552\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"536dd696\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4566bffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54d1753a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1a3f20d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_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\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7c994399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":55,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"636499bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":359.983},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-800.976,\"unit\":\"px\"},\"_offset_y\":{\"size\":-20.013999999999999,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cef6ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Question\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70947ea3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#5E0826\",\"tab_active_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1713,321,'_wp_page_template','elementor_header_footer'),(1714,321,'_elementor_edit_mode','builder'),(1715,321,'_elementor_template_type','wp-page'),(1716,321,'_elementor_version','3.16.3'),(1717,321,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1718,321,'_elementor_data','[{\"id\":\"27f57f63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#EF529C\"},\"elements\":[{\"id\":\"1df3c6f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58472641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Services\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"212e67f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"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\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"694337b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75f8c369\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1610c5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7970b741\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"296db0e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a6e3ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Cut\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529C\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c4c6522\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 26\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"160\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bb7772b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"group w-full text-token-text-primary border-b border-black\\/10 dark:border-gray-900\\/50 bg-gray-50 dark:bg-[#444654]\\\" data-testid=\\\"conversation-turn-3\\\"><div class=\\\"p-4 justify-center text-base md:gap-6 md:py-6 m-auto\\\"><div class=\\\"flex flex-1 gap-4 text-base mx-auto md:gap-6 md:max-w-2xl lg:max-w-[38rem] xl:max-w-3xl }\\\"><div class=\\\"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]\\\"><div class=\\\"flex flex-grow flex-col gap-3 max-w-full\\\"><div class=\\\"min-h-[20px] flex flex-col items-start gap-3 overflow-x-auto whitespace-pre-wrap break-words\\\"><div class=\\\"markdown prose w-full break-words dark:prose-invert light\\\"><p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c6d7741\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6f99f1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e14622f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"47234ed6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e2e97bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"64f6b880\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"211c2e21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Color\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76c64cdb\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 23\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"148\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e838a99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"435bd96c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49abcccf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c7e588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19445381\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d3c09dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35a2ee7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"757a9be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74cf8494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Spa\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c98a9d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22005ba9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e76d0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5df72ddd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b124c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f3463f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4006d66b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a9af8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Straightening\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16a5d313\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e1e3e21\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14a070dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b0c21d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2af9e329\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78d7a00d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"537916f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1bf213cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72b0cb78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body And Head Massage\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675ffbdd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for Body Scrub, Head Massage with Aroma\\/Olive Oil.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"72ec7b08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"23ead247\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53fe8234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10c95b76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4dbbe93d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"747bcf6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33879694\",\"elType\":\"widget\",\"settings\":{\"title\":\"Threading\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a209509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76ef24c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68cfff0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cfc2d82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85072e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ce872e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f8d612\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5905289\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0de97ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facial\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2021e8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9ce19c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e171b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67ab489\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ec5c2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d02de4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8247237\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"da7a4d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clean Up\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b700e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59e80d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d51902\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7acc2a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7631ace\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b07a3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb1393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ae718c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6d3d6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bleach And Detan\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86e5d51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for body and facial beauty treatments and services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8cddbb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"54ac285\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ca1816\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1184d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77f2297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"898cba5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f64c381\",\"elType\":\"widget\",\"settings\":{\"title\":\"Waxing\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f004c71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbd60fb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d9329cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77390\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bc825cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6068eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f434c65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d2e30e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Manicure And Pedicure\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6aecb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for foot and nail treatments, including massages and manicures.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9878e0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"db164c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"332a568\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83ddaed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75b9bb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df4ade5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"074c655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Makeup\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8dc13ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9dada02\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65a1867e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"70d5b092\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"17d8ea4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"517b4586\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1631759838552\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"536dd696\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4566bffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54d1753a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1a3f20d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_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\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7c994399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":55,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"636499bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":359.983},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-800.976,\"unit\":\"px\"},\"_offset_y\":{\"size\":-20.013999999999999,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cef6ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Question\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70947ea3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#5E0826\",\"tab_active_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1719,316,'_elementor_page_assets','a:0:{}'),(1720,316,'_eael_custom_js',''),(1721,322,'_wp_page_template','elementor_header_footer'),(1722,322,'_elementor_edit_mode','builder'),(1723,322,'_elementor_template_type','wp-page'),(1724,322,'_elementor_version','3.16.3'),(1725,322,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1726,322,'_elementor_data','[{\"id\":\"27f57f63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#EF529C\"},\"elements\":[{\"id\":\"1df3c6f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58472641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Services\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"212e67f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"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\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"694337b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75f8c369\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1610c5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7970b741\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"296db0e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a6e3ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Cut\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529C\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c4c6522\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 26\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"160\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bb7772b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"group w-full text-token-text-primary border-b border-black\\/10 dark:border-gray-900\\/50 bg-gray-50 dark:bg-[#444654]\\\" data-testid=\\\"conversation-turn-3\\\"><div class=\\\"p-4 justify-center text-base md:gap-6 md:py-6 m-auto\\\"><div class=\\\"flex flex-1 gap-4 text-base mx-auto md:gap-6 md:max-w-2xl lg:max-w-[38rem] xl:max-w-3xl }\\\"><div class=\\\"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]\\\"><div class=\\\"flex flex-grow flex-col gap-3 max-w-full\\\"><div class=\\\"min-h-[20px] flex flex-col items-start gap-3 overflow-x-auto whitespace-pre-wrap break-words\\\"><div class=\\\"markdown prose w-full break-words dark:prose-invert light\\\"><p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c6d7741\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6f99f1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e14622f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"47234ed6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e2e97bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"64f6b880\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"211c2e21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Color\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76c64cdb\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 23\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"148\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e838a99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"435bd96c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49abcccf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c7e588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19445381\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d3c09dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35a2ee7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"757a9be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74cf8494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Spa\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c98a9d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22005ba9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e76d0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5df72ddd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b124c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f3463f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4006d66b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a9af8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Straightening\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16a5d313\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e1e3e21\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14a070dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b0c21d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2af9e329\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78d7a00d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"537916f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1bf213cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72b0cb78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body And Head Massage\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675ffbdd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for Body Scrub, Head Massage with Aroma\\/Olive Oil.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"72ec7b08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"23ead247\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53fe8234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10c95b76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4dbbe93d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"747bcf6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33879694\",\"elType\":\"widget\",\"settings\":{\"title\":\"Threading\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a209509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76ef24c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68cfff0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cfc2d82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85072e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ce872e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f8d612\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5905289\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0de97ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facial\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2021e8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9ce19c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e171b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67ab489\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ec5c2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d02de4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8247237\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"da7a4d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clean Up\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b700e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59e80d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d51902\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7acc2a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7631ace\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b07a3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb1393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ae718c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6d3d6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bleach And Detan\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86e5d51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for body and facial beauty treatments and services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8cddbb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"54ac285\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ca1816\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1184d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77f2297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"898cba5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f64c381\",\"elType\":\"widget\",\"settings\":{\"title\":\"Waxing\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f004c71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbd60fb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d9329cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77390\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bc825cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6068eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f434c65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d2e30e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Manicure And Pedicure\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6aecb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for foot and nail treatments, including massages and manicures.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9878e0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"db164c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"332a568\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83ddaed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75b9bb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df4ade5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"074c655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Makeup\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8dc13ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9dada02\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65a1867e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"70d5b092\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"17d8ea4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"517b4586\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1631759838552\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"536dd696\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4566bffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54d1753a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1a3f20d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_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\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7c994399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":55,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"636499bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":359.983},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-800.976,\"unit\":\"px\"},\"_offset_y\":{\"size\":-20.013999999999999,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cef6ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Question\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70947ea3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#5E0826\",\"tab_active_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1727,322,'_elementor_page_assets','a:0:{}'),(1728,323,'_wp_page_template','elementor_header_footer'),(1729,323,'_elementor_edit_mode','builder'),(1730,323,'_elementor_template_type','wp-page'),(1731,323,'_elementor_version','3.16.3'),(1732,323,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1733,323,'_elementor_data','[{\"id\":\"27f57f63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#EF529C\"},\"elements\":[{\"id\":\"1df3c6f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58472641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Services\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"212e67f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"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\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"694337b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75f8c369\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1610c5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7970b741\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"296db0e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a6e3ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Cut\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529C\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c4c6522\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 26\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"160\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"title_color\":\"globals\\/colors?id=primary\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bb7772b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"group w-full text-token-text-primary border-b border-black\\/10 dark:border-gray-900\\/50 bg-gray-50 dark:bg-[#444654]\\\" data-testid=\\\"conversation-turn-3\\\"><div class=\\\"p-4 justify-center text-base md:gap-6 md:py-6 m-auto\\\"><div class=\\\"flex flex-1 gap-4 text-base mx-auto md:gap-6 md:max-w-2xl lg:max-w-[38rem] xl:max-w-3xl }\\\"><div class=\\\"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]\\\"><div class=\\\"flex flex-grow flex-col gap-3 max-w-full\\\"><div class=\\\"min-h-[20px] flex flex-col items-start gap-3 overflow-x-auto whitespace-pre-wrap break-words\\\"><div class=\\\"markdown prose w-full break-words dark:prose-invert light\\\"><p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c6d7741\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6f99f1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e14622f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"47234ed6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e2e97bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"64f6b880\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"211c2e21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Color\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76c64cdb\",\"elType\":\"widget\",\"settings\":{\"title\":\"$ 23\",\"align\":\"left\",\"title_color\":\"#5E0826\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"148\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"66\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e838a99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"435bd96c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49abcccf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c7e588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19445381\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d3c09dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35a2ee7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"757a9be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74cf8494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Spa\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c98a9d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22005ba9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e76d0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5df72ddd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b124c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f3463f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4006d66b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a9af8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Straightening\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16a5d313\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e1e3e21\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14a070dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b0c21d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2af9e329\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78d7a00d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"537916f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1bf213cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72b0cb78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body And Head Massage\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675ffbdd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for Body Scrub, Head Massage with Aroma\\/Olive Oil.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"72ec7b08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"23ead247\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53fe8234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10c95b76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4dbbe93d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"747bcf6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33879694\",\"elType\":\"widget\",\"settings\":{\"title\":\"Threading\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a209509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76ef24c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68cfff0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cfc2d82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85072e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ce872e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f8d612\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5905289\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0de97ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facial\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2021e8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9ce19c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e171b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67ab489\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ec5c2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d02de4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8247237\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"da7a4d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clean Up\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b700e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59e80d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d51902\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7acc2a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7631ace\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b07a3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb1393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ae718c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6d3d6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bleach And Detan\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86e5d51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for body and facial beauty treatments and services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8cddbb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"54ac285\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ca1816\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1184d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77f2297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"898cba5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f64c381\",\"elType\":\"widget\",\"settings\":{\"title\":\"Waxing\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f004c71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbd60fb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d9329cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77390\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bc825cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6068eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f434c65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d2e30e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Manicure And Pedicure\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6aecb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for foot and nail treatments, including massages and manicures.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9878e0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"db164c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"332a568\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83ddaed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75b9bb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df4ade5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"074c655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Makeup\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8dc13ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9dada02\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65a1867e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"70d5b092\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"17d8ea4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"517b4586\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1631759838552\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"536dd696\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4566bffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54d1753a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1a3f20d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_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\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7c994399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":55,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"636499bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":359.983},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-800.976,\"unit\":\"px\"},\"_offset_y\":{\"size\":-20.013999999999999,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cef6ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Question\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70947ea3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#5E0826\",\"tab_active_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1734,323,'_elementor_page_assets','a:0:{}'),(1735,324,'_wp_page_template','elementor_header_footer'),(1736,324,'_elementor_edit_mode','builder'),(1737,324,'_elementor_template_type','wp-page'),(1738,324,'_elementor_version','3.16.3'),(1739,324,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1740,324,'_elementor_data','[{\"id\":\"27f57f63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#EF529C\"},\"elements\":[{\"id\":\"1df3c6f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58472641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Services\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"212e67f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"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\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"694337b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75f8c369\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1610c5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7970b741\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"296db0e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a6e3ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Cut\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529C\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bb7772b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"group w-full text-token-text-primary border-b border-black\\/10 dark:border-gray-900\\/50 bg-gray-50 dark:bg-[#444654]\\\" data-testid=\\\"conversation-turn-3\\\"><div class=\\\"p-4 justify-center text-base md:gap-6 md:py-6 m-auto\\\"><div class=\\\"flex flex-1 gap-4 text-base mx-auto md:gap-6 md:max-w-2xl lg:max-w-[38rem] xl:max-w-3xl }\\\"><div class=\\\"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]\\\"><div class=\\\"flex flex-grow flex-col gap-3 max-w-full\\\"><div class=\\\"min-h-[20px] flex flex-col items-start gap-3 overflow-x-auto whitespace-pre-wrap break-words\\\"><div class=\\\"markdown prose w-full break-words dark:prose-invert light\\\"><p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c6d7741\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6f99f1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e14622f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"47234ed6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e2e97bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"64f6b880\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"211c2e21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Color\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e838a99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"435bd96c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49abcccf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c7e588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19445381\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d3c09dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35a2ee7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"757a9be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74cf8494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Spa\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c98a9d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22005ba9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e76d0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5df72ddd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b124c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f3463f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4006d66b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a9af8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Straightening\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16a5d313\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e1e3e21\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14a070dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b0c21d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2af9e329\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78d7a00d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"537916f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1bf213cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72b0cb78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body And Head Massage\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675ffbdd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for Body Scrub, Head Massage with Aroma\\/Olive Oil.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"72ec7b08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"23ead247\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53fe8234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10c95b76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4dbbe93d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"747bcf6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33879694\",\"elType\":\"widget\",\"settings\":{\"title\":\"Threading\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a209509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76ef24c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68cfff0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cfc2d82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85072e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ce872e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f8d612\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5905289\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0de97ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facial\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2021e8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9ce19c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e171b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67ab489\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ec5c2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d02de4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8247237\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"da7a4d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clean Up\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b700e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59e80d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d51902\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7acc2a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7631ace\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b07a3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb1393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ae718c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6d3d6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bleach And Detan\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86e5d51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for body and facial beauty treatments and services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8cddbb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"54ac285\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ca1816\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1184d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77f2297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"898cba5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f64c381\",\"elType\":\"widget\",\"settings\":{\"title\":\"Waxing\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f004c71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbd60fb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d9329cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77390\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bc825cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6068eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f434c65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d2e30e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Manicure And Pedicure\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6aecb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for foot and nail treatments, including massages and manicures.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9878e0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"db164c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"332a568\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83ddaed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75b9bb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df4ade5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"074c655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Makeup\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8dc13ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9dada02\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65a1867e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"70d5b092\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"17d8ea4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"517b4586\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1631759838552\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"536dd696\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4566bffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54d1753a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1a3f20d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_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\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7c994399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":55,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"636499bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":359.983},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-800.976,\"unit\":\"px\"},\"_offset_y\":{\"size\":-20.013999999999999,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cef6ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Question\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70947ea3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#5E0826\",\"tab_active_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1741,324,'_elementor_page_assets','a:0:{}'),(1749,326,'_wp_page_template','elementor_header_footer'),(1750,326,'_elementor_edit_mode','builder'),(1751,326,'_elementor_template_type','wp-page'),(1752,326,'_elementor_version','3.16.3'),(1753,326,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1754,326,'_elementor_data','[{\"id\":\"27f57f63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#EF529C\"},\"elements\":[{\"id\":\"1df3c6f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58472641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Services\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"212e67f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"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\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"694337b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75f8c369\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1610c5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7970b741\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"296db0e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a6e3ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Cut\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529C\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bb7772b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"group w-full text-token-text-primary border-b border-black\\/10 dark:border-gray-900\\/50 bg-gray-50 dark:bg-[#444654]\\\" data-testid=\\\"conversation-turn-3\\\"><div class=\\\"p-4 justify-center text-base md:gap-6 md:py-6 m-auto\\\"><div class=\\\"flex flex-1 gap-4 text-base mx-auto md:gap-6 md:max-w-2xl lg:max-w-[38rem] xl:max-w-3xl }\\\"><div class=\\\"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]\\\"><div class=\\\"flex flex-grow flex-col gap-3 max-w-full\\\"><div class=\\\"min-h-[20px] flex flex-col items-start gap-3 overflow-x-auto whitespace-pre-wrap break-words\\\"><div class=\\\"markdown prose w-full break-words dark:prose-invert light\\\"><p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c6d7741\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6f99f1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e14622f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"47234ed6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e2e97bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"64f6b880\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"211c2e21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Color\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e838a99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"435bd96c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49abcccf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c7e588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19445381\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d3c09dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35a2ee7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"757a9be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74cf8494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Spa\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c98a9d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22005ba9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e76d0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5df72ddd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b124c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f3463f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4006d66b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a9af8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Straightening\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16a5d313\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e1e3e21\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14a070dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b0c21d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2af9e329\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78d7a00d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"537916f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1bf213cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72b0cb78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body And Head Massage\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675ffbdd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for Body Scrub, Head Massage with Aroma\\/Olive Oil.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"72ec7b08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"23ead247\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53fe8234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10c95b76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4dbbe93d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"747bcf6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33879694\",\"elType\":\"widget\",\"settings\":{\"title\":\"Threading\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a209509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76ef24c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68cfff0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cfc2d82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85072e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ce872e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f8d612\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5905289\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0de97ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facial\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2021e8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9ce19c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e171b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67ab489\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ec5c2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d02de4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8247237\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"da7a4d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clean Up\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b700e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59e80d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d51902\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7acc2a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7631ace\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b07a3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb1393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ae718c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6d3d6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bleach And Detan\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86e5d51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for body and facial beauty treatments and services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8cddbb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"54ac285\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ca1816\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1184d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77f2297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"898cba5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f64c381\",\"elType\":\"widget\",\"settings\":{\"title\":\"Waxing\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f004c71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbd60fb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d9329cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77390\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bc825cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6068eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f434c65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d2e30e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Manicure And Pedicure\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6aecb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for foot and nail treatments, including massages and manicures.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9878e0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"db164c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"332a568\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83ddaed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75b9bb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df4ade5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"074c655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Makeup\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8dc13ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9dada02\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65a1867e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"70d5b092\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"17d8ea4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"517b4586\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1631759838552\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"536dd696\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4566bffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54d1753a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1a3f20d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_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\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7c994399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":55,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"636499bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":359.983},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-800.976,\"unit\":\"px\"},\"_offset_y\":{\"size\":-20.013999999999999,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cef6ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Question\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70947ea3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#5E0826\",\"tab_active_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1755,326,'_elementor_page_assets','a:0:{}'),(1756,327,'_wp_page_template','elementor_header_footer'),(1757,327,'_elementor_edit_mode','builder'),(1758,327,'_elementor_template_type','wp-page'),(1759,327,'_elementor_version','3.16.3'),(1760,327,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1761,327,'_elementor_data','[{\"id\":\"27f57f63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#EF529C\"},\"elements\":[{\"id\":\"1df3c6f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58472641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Services\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"212e67f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"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\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"694337b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75f8c369\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1610c5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7970b741\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"296db0e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a6e3ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Cut\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529C\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bb7772b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"group w-full text-token-text-primary border-b border-black\\/10 dark:border-gray-900\\/50 bg-gray-50 dark:bg-[#444654]\\\" data-testid=\\\"conversation-turn-3\\\"><div class=\\\"p-4 justify-center text-base md:gap-6 md:py-6 m-auto\\\"><div class=\\\"flex flex-1 gap-4 text-base mx-auto md:gap-6 md:max-w-2xl lg:max-w-[38rem] xl:max-w-3xl }\\\"><div class=\\\"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]\\\"><div class=\\\"flex flex-grow flex-col gap-3 max-w-full\\\"><div class=\\\"min-h-[20px] flex flex-col items-start gap-3 overflow-x-auto whitespace-pre-wrap break-words\\\"><div class=\\\"markdown prose w-full break-words dark:prose-invert light\\\"><p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c6d7741\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6f99f1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e14622f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"47234ed6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e2e97bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"64f6b880\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"211c2e21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Color\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e838a99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"435bd96c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49abcccf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c7e588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19445381\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d3c09dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35a2ee7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"757a9be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74cf8494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Spa\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c98a9d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22005ba9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e76d0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5df72ddd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b124c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f3463f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4006d66b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a9af8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Straightening\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16a5d313\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e1e3e21\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14a070dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b0c21d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2af9e329\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78d7a00d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"537916f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1bf213cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72b0cb78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body And Head Massage\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675ffbdd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for Body Scrub, Head Massage with Aroma\\/Olive Oil.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"72ec7b08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"23ead247\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53fe8234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10c95b76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4dbbe93d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"747bcf6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33879694\",\"elType\":\"widget\",\"settings\":{\"title\":\"Threading\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a209509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76ef24c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68cfff0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cfc2d82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85072e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ce872e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f8d612\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5905289\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0de97ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facial\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2021e8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9ce19c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e171b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67ab489\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ec5c2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d02de4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8247237\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"da7a4d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clean Up\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b700e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59e80d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d51902\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7acc2a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7631ace\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b07a3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb1393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ae718c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6d3d6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bleach And Detan\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86e5d51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for body and facial beauty treatments and services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8cddbb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"54ac285\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ca1816\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1184d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77f2297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"898cba5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f64c381\",\"elType\":\"widget\",\"settings\":{\"title\":\"Waxing\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f004c71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbd60fb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d9329cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77390\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bc825cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6068eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f434c65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d2e30e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Manicure And Pedicure\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6aecb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for foot and nail treatments, including massages and manicures.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9878e0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"db164c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"332a568\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83ddaed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75b9bb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df4ade5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"074c655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Makeup\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8dc13ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9dada02\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65a1867e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"70d5b092\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"17d8ea4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"517b4586\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1631759838552\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"536dd696\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4566bffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54d1753a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1a3f20d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_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\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7c994399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":55,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"636499bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":359.983},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-800.976,\"unit\":\"px\"},\"_offset_y\":{\"size\":-20.013999999999999,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cef6ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Question\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70947ea3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#5E0826\",\"tab_active_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1762,327,'_elementor_page_assets','a:0:{}'),(1763,328,'_wp_page_template','elementor_header_footer'),(1764,328,'_elementor_edit_mode','builder'),(1765,328,'_elementor_template_type','wp-page'),(1766,328,'_elementor_version','3.16.3'),(1767,328,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1768,328,'_elementor_data','[{\"id\":\"27f57f63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#EF529C\"},\"elements\":[{\"id\":\"1df3c6f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58472641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Services\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"212e67f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"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\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"694337b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75f8c369\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1610c5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7970b741\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"296db0e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a6e3ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Cut\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529C\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bb7772b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"group w-full text-token-text-primary border-b border-black\\/10 dark:border-gray-900\\/50 bg-gray-50 dark:bg-[#444654]\\\" data-testid=\\\"conversation-turn-3\\\"><div class=\\\"p-4 justify-center text-base md:gap-6 md:py-6 m-auto\\\"><div class=\\\"flex flex-1 gap-4 text-base mx-auto md:gap-6 md:max-w-2xl lg:max-w-[38rem] xl:max-w-3xl }\\\"><div class=\\\"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]\\\"><div class=\\\"flex flex-grow flex-col gap-3 max-w-full\\\"><div class=\\\"min-h-[20px] flex flex-col items-start gap-3 overflow-x-auto whitespace-pre-wrap break-words\\\"><div class=\\\"markdown prose w-full break-words dark:prose-invert light\\\"><p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c6d7741\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6f99f1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e14622f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"47234ed6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e2e97bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"64f6b880\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"211c2e21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Color\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e838a99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"435bd96c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49abcccf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c7e588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19445381\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d3c09dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35a2ee7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"757a9be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74cf8494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Spa\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c98a9d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22005ba9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e76d0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5df72ddd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b124c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f3463f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4006d66b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a9af8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Straightening\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16a5d313\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e1e3e21\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14a070dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b0c21d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2af9e329\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78d7a00d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"537916f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1bf213cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72b0cb78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body And Head Massage\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675ffbdd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for Body Scrub, Head Massage with Aroma\\/Olive Oil.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"72ec7b08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"23ead247\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53fe8234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10c95b76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4dbbe93d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"747bcf6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33879694\",\"elType\":\"widget\",\"settings\":{\"title\":\"Threading\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a209509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76ef24c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68cfff0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cfc2d82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85072e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ce872e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f8d612\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":111,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5905289\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0de97ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facial\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2021e8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9ce19c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e171b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67ab489\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ec5c2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d02de4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8247237\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"da7a4d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clean Up\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b700e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59e80d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d51902\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7acc2a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7631ace\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b07a3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb1393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ae718c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6d3d6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bleach And Detan\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86e5d51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for body and facial beauty treatments and services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8cddbb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"54ac285\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ca1816\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1184d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77f2297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"898cba5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f64c381\",\"elType\":\"widget\",\"settings\":{\"title\":\"Waxing\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f004c71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbd60fb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d9329cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77390\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bc825cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6068eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f434c65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d2e30e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Manicure And Pedicure\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6aecb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for foot and nail treatments, including massages and manicures.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9878e0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"db164c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"332a568\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83ddaed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75b9bb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df4ade5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"074c655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Makeup\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8dc13ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9dada02\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65a1867e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"70d5b092\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"17d8ea4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"517b4586\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1631759838552\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"536dd696\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4566bffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54d1753a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1a3f20d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_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\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7c994399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":55,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"636499bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":359.983},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-800.976,\"unit\":\"px\"},\"_offset_y\":{\"size\":-20.013999999999999,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cef6ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Question\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70947ea3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#5E0826\",\"tab_active_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1769,328,'_elementor_page_assets','a:0:{}'),(1779,330,'_wp_page_template','elementor_header_footer'),(1780,330,'_elementor_edit_mode','builder'),(1781,330,'_elementor_template_type','wp-page'),(1782,330,'_elementor_version','3.16.3'),(1783,330,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (1784,330,'_elementor_data','[{\"id\":\"27f57f63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#EF529C\"},\"elements\":[{\"id\":\"1df3c6f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58472641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Services\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"212e67f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"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\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"694337b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75f8c369\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1610c5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7970b741\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"296db0e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a6e3ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Cut\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529C\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bb7772b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"group w-full text-token-text-primary border-b border-black\\/10 dark:border-gray-900\\/50 bg-gray-50 dark:bg-[#444654]\\\" data-testid=\\\"conversation-turn-3\\\"><div class=\\\"p-4 justify-center text-base md:gap-6 md:py-6 m-auto\\\"><div class=\\\"flex flex-1 gap-4 text-base mx-auto md:gap-6 md:max-w-2xl lg:max-w-[38rem] xl:max-w-3xl }\\\"><div class=\\\"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]\\\"><div class=\\\"flex flex-grow flex-col gap-3 max-w-full\\\"><div class=\\\"min-h-[20px] flex flex-col items-start gap-3 overflow-x-auto whitespace-pre-wrap break-words\\\"><div class=\\\"markdown prose w-full break-words dark:prose-invert light\\\"><p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c6d7741\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6f99f1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e14622f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"47234ed6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e2e97bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"64f6b880\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"211c2e21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Color\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e838a99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"435bd96c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49abcccf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c7e588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19445381\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d3c09dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35a2ee7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"757a9be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74cf8494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Spa\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c98a9d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22005ba9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e76d0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5df72ddd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b124c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f3463f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4006d66b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a9af8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Straightening\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16a5d313\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e1e3e21\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14a070dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b0c21d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2af9e329\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78d7a00d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"537916f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1bf213cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72b0cb78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body And Head Massage\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675ffbdd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for Body Scrub, Head Massage with Aroma\\/Olive Oil.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"72ec7b08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"23ead247\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53fe8234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10c95b76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4dbbe93d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"747bcf6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33879694\",\"elType\":\"widget\",\"settings\":{\"title\":\"Threading\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a209509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76ef24c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68cfff0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cfc2d82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85072e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ce872e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f8d612\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":111,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5905289\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0de97ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facial\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2021e8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9ce19c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e171b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67ab489\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ec5c2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d02de4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8247237\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"da7a4d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clean Up\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b700e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59e80d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d51902\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7acc2a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7631ace\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b07a3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb1393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ae718c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6d3d6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bleach And Detan\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86e5d51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for body and facial beauty treatments and services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8cddbb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"54ac285\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ca1816\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1184d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77f2297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"898cba5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f64c381\",\"elType\":\"widget\",\"settings\":{\"title\":\"Waxing\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f004c71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbd60fb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d9329cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77390\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bc825cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6068eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f434c65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d2e30e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Manicure And Pedicure\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6aecb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for foot and nail treatments, including massages and manicures.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9878e0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"db164c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"332a568\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83ddaed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75b9bb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df4ade5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"074c655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Makeup\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8dc13ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9dada02\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65a1867e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"70d5b092\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"17d8ea4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"517b4586\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1631759838552\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"536dd696\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4566bffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54d1753a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1a3f20d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_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\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7c994399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":55,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"636499bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":359.983},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-800.976,\"unit\":\"px\"},\"_offset_y\":{\"size\":-20.013999999999999,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cef6ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Question\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70947ea3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#5E0826\",\"tab_active_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1785,330,'_elementor_page_assets','a:0:{}'),(1786,331,'_wp_page_template','elementor_header_footer'),(1787,331,'_elementor_edit_mode','builder'),(1788,331,'_elementor_template_type','wp-page'),(1789,331,'_elementor_version','3.16.3'),(1790,331,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1791,331,'_elementor_data','[{\"id\":\"27f57f63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#EF529C\"},\"elements\":[{\"id\":\"1df3c6f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58472641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Services\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"212e67f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"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\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"694337b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75f8c369\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1610c5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7970b741\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"296db0e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a6e3ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Cut\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529C\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bb7772b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"group w-full text-token-text-primary border-b border-black\\/10 dark:border-gray-900\\/50 bg-gray-50 dark:bg-[#444654]\\\" data-testid=\\\"conversation-turn-3\\\"><div class=\\\"p-4 justify-center text-base md:gap-6 md:py-6 m-auto\\\"><div class=\\\"flex flex-1 gap-4 text-base mx-auto md:gap-6 md:max-w-2xl lg:max-w-[38rem] xl:max-w-3xl }\\\"><div class=\\\"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]\\\"><div class=\\\"flex flex-grow flex-col gap-3 max-w-full\\\"><div class=\\\"min-h-[20px] flex flex-col items-start gap-3 overflow-x-auto whitespace-pre-wrap break-words\\\"><div class=\\\"markdown prose w-full break-words dark:prose-invert light\\\"><p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c6d7741\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6f99f1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e14622f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"47234ed6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e2e97bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"64f6b880\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"211c2e21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Color\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e838a99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"435bd96c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49abcccf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c7e588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19445381\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d3c09dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35a2ee7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"757a9be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74cf8494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Spa\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c98a9d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22005ba9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e76d0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5df72ddd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b124c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f3463f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4006d66b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a9af8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Straightening\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16a5d313\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e1e3e21\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14a070dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b0c21d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2af9e329\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78d7a00d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"537916f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1bf213cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72b0cb78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body And Head Massage\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675ffbdd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for Body Scrub, Head Massage with Aroma\\/Olive Oil.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"72ec7b08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"23ead247\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53fe8234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10c95b76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4dbbe93d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"747bcf6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33879694\",\"elType\":\"widget\",\"settings\":{\"title\":\"Threading\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a209509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76ef24c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68cfff0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cfc2d82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85072e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ce872e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f8d612\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":111,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5905289\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0de97ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facial\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2021e8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9ce19c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e171b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67ab489\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ec5c2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d02de4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8247237\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"da7a4d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clean Up\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b700e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59e80d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d51902\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7acc2a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7631ace\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b07a3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb1393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ae718c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6d3d6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bleach And Detan\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86e5d51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for body and facial beauty treatments and services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8cddbb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"54ac285\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ca1816\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1184d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77f2297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"898cba5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f64c381\",\"elType\":\"widget\",\"settings\":{\"title\":\"Waxing\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f004c71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbd60fb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d9329cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77390\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bc825cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6068eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f434c65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d2e30e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Manicure And Pedicure\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6aecb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for foot and nail treatments, including massages and manicures.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9878e0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"db164c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"332a568\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83ddaed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75b9bb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df4ade5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"074c655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Makeup\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8dc13ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9dada02\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65a1867e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"70d5b092\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"17d8ea4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"517b4586\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1631759838552\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"536dd696\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4566bffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54d1753a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1a3f20d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_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\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7c994399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":55,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"636499bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":359.983},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-800.976,\"unit\":\"px\"},\"_offset_y\":{\"size\":-20.013999999999999,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cef6ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Question\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70947ea3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#5E0826\",\"tab_active_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1792,331,'_elementor_page_assets','a:0:{}'),(1793,332,'_wp_page_template','elementor_header_footer'),(1794,332,'_elementor_edit_mode','builder'),(1795,332,'_elementor_template_type','wp-page'),(1796,332,'_elementor_version','3.16.3'),(1797,332,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1798,332,'_elementor_data','[{\"id\":\"27f57f63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.73999999999999999,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"170\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\"},\"background_overlay_color\":\"#EF529C\"},\"elements\":[{\"id\":\"1df3c6f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58472641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Services\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=30e5369\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"212e67f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"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\":\"100\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"694337b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75f8c369\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1610c5b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7970b741\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"296db0e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a6e3ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Cut\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\"},\"title_color\":\"#EF529C\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bb7772b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"group w-full text-token-text-primary border-b border-black\\/10 dark:border-gray-900\\/50 bg-gray-50 dark:bg-[#444654]\\\" data-testid=\\\"conversation-turn-3\\\"><div class=\\\"p-4 justify-center text-base md:gap-6 md:py-6 m-auto\\\"><div class=\\\"flex flex-1 gap-4 text-base mx-auto md:gap-6 md:max-w-2xl lg:max-w-[38rem] xl:max-w-3xl }\\\"><div class=\\\"relative flex w-[calc(100%-50px)] flex-col gap-1 md:gap-3 lg:w-[calc(100%-115px)]\\\"><div class=\\\"flex flex-grow flex-col gap-3 max-w-full\\\"><div class=\\\"min-h-[20px] flex flex-col items-start gap-3 overflow-x-auto whitespace-pre-wrap break-words\\\"><div class=\\\"markdown prose w-full break-words dark:prose-invert light\\\"><p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.<\\/p><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c6d7741\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6f99f1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e14622f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"47234ed6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e2e97bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"64f6b880\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"211c2e21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Color\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e838a99\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"435bd96c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49abcccf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c7e588\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19445381\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d3c09dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35a2ee7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"60\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"757a9be3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74cf8494\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Spa\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c98a9d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22005ba9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5e76d0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5df72ddd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b124c7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f3463f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"71\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4006d66b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79a9af8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hair Straightening\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16a5d313\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e1e3e21\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14a070dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b0c21d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2af9e329\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"78d7a00d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"537916f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1bf213cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72b0cb78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Body And Head Massage\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"675ffbdd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for Body Scrub, Head Massage with Aroma\\/Olive Oil.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"72ec7b08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"23ead247\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53fe8234\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-60\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"10c95b76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4dbbe93d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"747bcf6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33879694\",\"elType\":\"widget\",\"settings\":{\"title\":\"Threading\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a209509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76ef24c5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68cfff0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cfc2d82\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85072e4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ce872e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f8d612\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":111,\"url\":\"https:\\/\\/athomenoha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"5905289\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0de97ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facial\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2021e8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9ce19c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e171b21\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67ab489\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ec5c2ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d02de4b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"8247237\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"da7a4d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Clean Up\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b700e2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59e80d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d51902\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7acc2a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7631ace\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b07a3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb1393\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ae718c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6d3d6a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Bleach And Detan\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86e5d51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for body and facial beauty treatments and services.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f8cddbb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"54ac285\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ca1816\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1184d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"77f2297\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"898cba5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f64c381\",\"elType\":\"widget\",\"settings\":{\"title\":\"Waxing\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f004c71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dbd60fb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44af0c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"d9329cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a77390\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bc825cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6068eb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f434c65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d2e30e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Manicure And Pedicure\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b6aecb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Price list for foot and nail treatments, including massages and manicures.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9878e0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"db164c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"332a568\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"83ddaed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75b9bb8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"88\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spring-spa-setting-PQSX3EK.jpg\"},\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df4ade5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.75,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"074c655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Makeup\",\"align\":\"left\",\"title_color\":\"#EF529C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8dc13ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"salon-box text-center pl-0 pr-0 mb-0\\\"><p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates<\\/p><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9dada02\",\"elType\":\"widget\",\"settings\":{\"text\":\"Open\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":4,\"vertical\":5,\"blur\":10,\"spread\":0,\"color\":\"rgba(212, 212, 212, 0.24)\"},\"align_mobile\":\"center\",\"background_color\":\"#F051A0\",\"hover_color\":\"#F051A0\",\"button_background_hover_color\":\"#FFFFFF\",\"button_hover_border_color\":\"#F051A0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65a1867e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"14\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-settings-on-pink-background-PNTV8L5.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_attachment\":\"fixed\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=secondary\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"70d5b092\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=b82d03e\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"17d8ea4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe To Our Newsletter\",\"typography_font_family\":\"Marcellus\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.2000000000000002,\"sizes\":[]},\"typography_font_weight\":\"500\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"517b4586\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"110***1631759838552\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"536dd696\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4566bffe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.927,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":45,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54d1753a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"22\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/spa-in-the-background-4BT6SD5.jpg\"},\"opacity\":{\"unit\":\"px\",\"size\":0.64000000000000001,\"sizes\":[]},\"_z_index\":0,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_x\":{\"size\":-32,\"unit\":\"px\"},\"_offset_y\":{\"size\":-16,\"unit\":\"px\"},\"_offset_x_tablet\":{\"size\":-23,\"unit\":\"px\"},\"_offset_x_mobile\":{\"size\":-13,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":77,\"unit\":\"px\"},\"_offset_y_mobile\":{\"size\":-3,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1a3f20d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg\"},\"_z_index\":1,\"_mask_switch\":\"yes\",\"_mask_shape\":\"blob\",\"_mask_position\":\"center left\",\"_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\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7c994399\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.027000000000001,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"_inline_size_tablet\":55,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"636499bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"25\",\"url\":\"https:\\/\\/noha.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/06\\/jasmine-flowers-white-1.2-Converted.png\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":359.983},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-800.976,\"unit\":\"px\"},\"_offset_y\":{\"size\":-20.013999999999999,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"45cef6ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Question\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70947ea3\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"How did you find out about our salon?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"6dd9dbe\"},{\"tab_title\":\"Should you shave before a spa treatment?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"a8c42ae\"},{\"tab_title\":\"Should i wear a bathing suit?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"10fd82d\"},{\"tab_title\":\"What other essentials should i bring?\",\"tab_content\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<\\/p>\",\"_id\":\"4f4901b\"}],\"selected_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-caret-up\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#5E0826\",\"tab_active_color\":\"#5E0826\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Marcellus\",\"title_typography_font_size\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false}]'),(1799,332,'_elementor_page_assets','a:0:{}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2023-06-20 07:06:35','2023-06-20 07:06:35','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2023-06-20 07:06:35','2023-06-20 07:06:35','',0,'https://noha.in8.cdn-alpha.com/?p=1',0,'post','',1),(2,1,'2023-06-20 07:06:35','2023-06-20 07:06:35','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://noha.in8.cdn-alpha.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2023-06-20 07:06:35','2023-06-20 07:06:35','',0,'https://noha.in8.cdn-alpha.com/?page_id=2',0,'page','',0),(3,1,'2023-06-20 07:06:35','2023-06-20 07:06:35','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://noha.in8.cdn-alpha.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2023-06-20 07:06:35','2023-06-20 07:06:35','',0,'https://noha.in8.cdn-alpha.com/?page_id=3',0,'page','',0),(4,1,'2023-06-20 07:07:05','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-06-20 07:07:05','0000-00-00 00:00:00','',0,'https://noha.in8.cdn-alpha.com/?p=4',0,'post','',0),(5,1,'2023-06-20 12:43:13','2023-06-20 07:13:13','','Default Kit','','publish','closed','closed','','default-kit','','','2023-06-20 12:43:13','2023-06-20 07:13:13','',0,'https://noha.in8.cdn-alpha.com/?p=5',0,'elementor_library','',0),(6,1,'2023-06-21 14:10:07','2023-06-21 08:40:07','https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/pur-wellness-spa-wordpress-theme-2023-05-10-12-24-18-utc.zip','pur-wellness-spa-wordpress-theme-2023-05-10-12-24-18-utc.zip','','private','open','closed','','pur-wellness-spa-wordpress-theme-2023-05-10-12-24-18-utc-zip','','','2023-06-21 14:10:07','2023-06-21 08:40:07','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/pur-wellness-spa-wordpress-theme-2023-05-10-12-24-18-utc.zip',0,'attachment','',0),(8,1,'2023-06-21 14:15:28','2023-06-21 08:45:28','','Esseine','','publish','closed','closed','','esseine','','','2023-06-21 14:15:28','2023-06-21 08:45:28','',0,'https://noha.in8.cdn-alpha.com/?envato_tk_import=esseine',0,'envato_tk_import','',0),(9,1,'2023-06-21 14:25:30','2023-06-21 08:55:30','','Kit Styles: Esseine','','publish','closed','closed','','global-kit-styles','','','2023-09-13 11:17:14','2023-09-13 05:47:14','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=global-kit-styles',0,'elementor_library','',0),(10,1,'2023-06-21 14:25:31','2023-06-21 08:55:31','','Global Kit Styles','','inherit','closed','closed','','9-revision-v1','','','2023-06-21 14:25:31','2023-06-21 08:55:31','',9,'https://noha.in8.cdn-alpha.com/?p=10',0,'revision','',0),(11,1,'2023-06-21 14:25:32','2023-06-21 08:55:32','','Global Kit Styles','','inherit','closed','closed','','9-revision-v1','','','2023-06-21 14:25:32','2023-06-21 08:55:32','',9,'https://noha.in8.cdn-alpha.com/?p=11',0,'revision','',0),(12,1,'2023-06-21 14:25:32','2023-06-21 08:55:32','','Kit Styles: Esseine','','inherit','closed','closed','','9-revision-v1','','','2023-06-21 14:25:32','2023-06-21 08:55:32','',9,'https://noha.in8.cdn-alpha.com/?p=12',0,'revision','',0),(13,1,'2023-06-21 14:25:33','2023-06-21 08:55:33','','jasmine-flowers-white-1.1-Converted.png','','inherit','','closed','','jasmine-flowers-white-1-1-converted-png','','','2023-06-21 14:25:33','2023-06-21 08:55:33','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png',0,'attachment','image/png',0),(14,1,'2023-06-21 14:25:35','2023-06-21 08:55:35','','spa-settings-on-pink-background-PNTV8L5.jpg','','inherit','','closed','','spa-settings-on-pink-background-pntv8l5-jpg','','','2023-06-21 14:25:35','2023-06-21 08:55:35','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-settings-on-pink-background-PNTV8L5.jpg',0,'attachment','image/jpeg',0),(15,1,'2023-06-21 14:25:36','2023-06-21 08:55:36','','elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png','','inherit','','closed','','elements-line-drawing-white-jasmine-flower-illustrations-ff57e82-2020-06-29-2-png','','','2023-06-21 14:25:36','2023-06-21 08:55:36','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png',0,'attachment','image/png',0),(16,1,'2023-06-21 14:25:38','2023-06-21 08:55:38','','Artboard-24.png','','inherit','','closed','','artboard-24-png','','','2023-06-21 14:25:38','2023-06-21 08:55:38','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-24.png',0,'attachment','image/png',0),(17,1,'2023-06-21 14:25:38','2023-06-21 08:55:38','','spa-setting-GTFJWQ4.jpg','','inherit','','closed','','spa-setting-gtfjwq4-jpg','','','2023-06-21 14:25:38','2023-06-21 08:55:38','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg',0,'attachment','image/jpeg',0),(18,1,'2023-06-21 14:25:39','2023-06-21 08:55:39','','elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png','','inherit','','closed','','elements-50-spa-line-green-black-icons-egvmgu-2017-12-07-7-png','','','2023-06-21 14:25:39','2023-06-21 08:55:39','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png',0,'attachment','image/png',0),(19,1,'2023-06-21 14:25:40','2023-06-21 08:55:40','','Artboard-8.png','','inherit','','closed','','artboard-8-png','','','2023-06-21 14:25:40','2023-06-21 08:55:40','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-8.png',0,'attachment','image/png',0),(20,1,'2023-06-21 14:25:40','2023-06-21 08:55:40','','blob-3.png','','inherit','','closed','','blob-3-png','','','2023-06-21 14:25:40','2023-06-21 08:55:40','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/blob-3.png',0,'attachment','image/png',0),(21,1,'2023-06-21 14:25:40','2023-06-21 08:55:40','','portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png','','inherit','','closed','','portrait-beautiful-young-woman-with-clean-fresh-sk-7acxdqg-png','','','2023-06-21 14:25:40','2023-06-21 08:55:40','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png',0,'attachment','image/png',0),(22,1,'2023-06-21 14:25:41','2023-06-21 08:55:41','','spa-in-the-background-4BT6SD5.jpg','','inherit','','closed','','spa-in-the-background-4bt6sd5-jpg','','','2023-06-21 14:25:41','2023-06-21 08:55:41','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg',0,'attachment','image/jpeg',0),(23,1,'2023-06-21 14:25:41','2023-06-21 08:55:41','','elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png','','inherit','','closed','','elements-50-spa-line-green-black-icons-egvmgu-2017-12-07-3-png','','','2023-06-21 14:25:41','2023-06-21 08:55:41','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png',0,'attachment','image/png',0),(24,1,'2023-06-21 14:25:42','2023-06-21 08:55:42','','Artboard-22.png','','inherit','','closed','','artboard-22-png','','','2023-06-21 14:25:42','2023-06-21 08:55:42','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-22.png',0,'attachment','image/png',0),(25,1,'2023-06-21 14:25:43','2023-06-21 08:55:43','','jasmine-flowers-white-1.2-Converted.png','','inherit','','closed','','jasmine-flowers-white-1-2-converted-png','','','2023-06-21 14:25:43','2023-06-21 08:55:43','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png',0,'attachment','image/png',0),(26,1,'2023-06-21 14:25:43','2023-06-21 08:55:43','','beautiful-woman-at-spring-park-P4PZ4CT.jpg','','inherit','','closed','','beautiful-woman-at-spring-park-p4pz4ct-jpg','','','2023-06-21 14:25:43','2023-06-21 08:55:43','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-at-spring-park-P4PZ4CT.jpg',0,'attachment','image/jpeg',0),(27,1,'2023-06-21 14:25:44','2023-06-21 08:55:44','','portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png','','inherit','','closed','','portrait-beautiful-young-woman-with-clean-fresh-sk-7acxdqg-1-png','','','2023-06-21 14:25:44','2023-06-21 08:55:44','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png',0,'attachment','image/png',0),(28,1,'2023-06-21 14:25:44','2023-06-21 08:55:44','','elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png','','inherit','','closed','','elements-50-spa-line-green-black-icons-egvmgu-2017-12-07-2-png','','','2023-06-21 14:25:44','2023-06-21 08:55:44','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png',0,'attachment','image/png',0),(29,1,'2023-06-21 14:25:44','2023-06-21 08:55:44','','elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png','','inherit','','closed','','elements-50-spa-line-green-black-icons-egvmgu-2017-12-07-8-png','','','2023-06-21 14:25:44','2023-06-21 08:55:44','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png',0,'attachment','image/png',0),(30,1,'2023-06-21 14:25:45','2023-06-21 08:55:45','','elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png','','inherit','','closed','','elements-line-drawing-white-jasmine-flower-illustrations-ff57e82-2020-06-29-1-png','','','2023-06-21 14:25:45','2023-06-21 08:55:45','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png',0,'attachment','image/png',0),(31,1,'2023-06-21 14:25:45','2023-06-21 08:55:45','','spa-massage-in-spa-salon-SDSUDMU.jpg','','inherit','','closed','','spa-massage-in-spa-salon-sdsudmu-jpg','','','2023-06-21 14:25:45','2023-06-21 08:55:45','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg',0,'attachment','image/jpeg',0),(32,1,'2023-06-21 14:25:48','2023-06-21 08:55:48','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Contact Us</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-24.png\" alt=\"\" loading=\"lazy\" /></figure><h3>0083-888-567</h3>		\n			<figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-8.png\" alt=\"\" loading=\"lazy\" /></figure><h3>esseine@mail.com</h3>		\n			<figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-22.png\" alt=\"\" loading=\"lazy\" /></figure><h3>London SE1 7PB, UK</h3>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"628\" height=\"602\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png 628w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1-300x288.png 300w\" sizes=\"(max-width: 628px) 100vw, 628px\" />															\n			<h2>Get In Touch</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->','Contact Us','','publish','closed','closed','','contact-us','','','2023-06-21 14:25:49','2023-06-21 08:55:49','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=contact-us',0,'elementor_library','',0),(33,1,'2023-06-21 14:25:48','2023-06-21 08:55:48','','jasmine-flowers-white-23.png','','inherit','','closed','','jasmine-flowers-white-23-png','','','2023-06-21 14:25:48','2023-06-21 08:55:48','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-23.png',0,'attachment','image/png',0),(34,1,'2023-06-21 14:25:48','2023-06-21 08:55:48','','elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png','','inherit','','closed','','elements-50-spa-line-green-black-icons-egvmgu-2017-12-07-6-png','','','2023-06-21 14:25:48','2023-06-21 08:55:48','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png',0,'attachment','image/png',0),(35,1,'2023-06-21 14:25:48','2023-06-21 08:55:48','','4625-Floating-Flowers.png','','inherit','','closed','','4625-floating-flowers-png','','','2023-06-21 14:25:48','2023-06-21 08:55:48','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png',0,'attachment','image/png',0),(36,1,'2023-06-21 14:25:48','2023-06-21 08:55:48','','face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg','','inherit','','closed','','face-peeling-mask-spa-beauty-treatment-skincare-fnhbx4m-1-jpg','','','2023-06-21 14:25:48','2023-06-21 08:55:48','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg',0,'attachment','image/jpeg',0),(37,1,'2023-06-21 14:25:48','2023-06-21 08:55:48','','Contact Us','','inherit','closed','closed','','32-revision-v1','','','2023-06-21 14:25:48','2023-06-21 08:55:48','',32,'https://noha.in8.cdn-alpha.com/?p=37',0,'revision','',0),(38,1,'2023-06-21 14:25:49','2023-06-21 08:55:49','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Contact Us</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-24.png\" alt=\"\" loading=\"lazy\" /></figure><h3>0083-888-567</h3>		\n			<figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-8.png\" alt=\"\" loading=\"lazy\" /></figure><h3>esseine@mail.com</h3>		\n			<figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-22.png\" alt=\"\" loading=\"lazy\" /></figure><h3>London SE1 7PB, UK</h3>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"628\" height=\"602\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png 628w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1-300x288.png 300w\" sizes=\"(max-width: 628px) 100vw, 628px\" />															\n			<h2>Get In Touch</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->','Contact Us','','inherit','closed','closed','','32-revision-v1','','','2023-06-21 14:25:49','2023-06-21 08:55:49','',32,'https://noha.in8.cdn-alpha.com/?p=38',0,'revision','',0),(39,1,'2023-06-21 14:25:50','2023-06-21 08:55:50','','4607-Massage-1.png','','inherit','','closed','','4607-massage-1-png','','','2023-06-21 14:25:50','2023-06-21 08:55:50','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png',0,'attachment','image/png',0),(40,1,'2023-06-21 14:25:50','2023-06-21 08:55:50','','jasmine-flowers-white2.png','','inherit','','closed','','jasmine-flowers-white2-png','','','2023-06-21 14:25:50','2023-06-21 08:55:50','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white2.png',0,'attachment','image/png',0),(41,1,'2023-06-21 14:25:51','2023-06-21 08:55:51','','jasmine-branch-white1.png','','inherit','','closed','','jasmine-branch-white1-png','','','2023-06-21 14:25:51','2023-06-21 08:55:51','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-branch-white1.png',0,'attachment','image/png',0),(42,1,'2023-06-21 14:25:51','2023-06-21 08:55:51','','elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png','','inherit','','closed','','elements-50-spa-line-green-black-icons-egvmgu-2017-12-07-9-png','','','2023-06-21 14:25:51','2023-06-21 08:55:51','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png',0,'attachment','image/png',0),(43,1,'2023-06-21 14:25:52','2023-06-21 08:55:52','','elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png','','inherit','','closed','','elements-50-spa-line-green-black-icons-egvmgu-2017-12-07-5-png','','','2023-06-21 14:25:52','2023-06-21 08:55:52','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png',0,'attachment','image/png',0),(44,1,'2023-06-21 14:25:53','2023-06-21 08:55:53','','beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg','','inherit','','closed','','beautiful-woman-lying-on-massage-table-in-spa-pa3zzd3-jpg','','','2023-06-21 14:25:53','2023-06-21 08:55:53','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg',0,'attachment','image/jpeg',0),(45,1,'2023-06-21 14:25:53','2023-06-21 08:55:53','<input\n				type=\"text\"\n				class=\"mf-input \"\n				id=\"mf-input-text-940e2e1\"\n				name=\"mf-text\"\n				placeholder=\"${ parent.decodeEntities(`Name`) } \"\n									onInput=${parent.handleChange}\n					onBlur=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-text\'] ? \'true\' : \'false\'}\n					ref=${el =>{\n												parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n					}}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-text\"\n					as=${html``}\n					/>\n			<input\n				type=\"text\"\n				class=\"mf-input \"\n				id=\"mf-input-text-17cfd00d\"\n				name=\"mf-text\"\n				placeholder=\"${ parent.decodeEntities(`Contact`) } \"\n									onInput=${parent.handleChange}\n					onBlur=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-text\'] ? \'true\' : \'false\'}\n					ref=${el =>{\n												parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n					}}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-text\"\n					as=${html``}\n					/>\n			<input \n				type=\"email\" \n				defaultValue=\"\" \n				class=\"mf-input \" \n				id=\"mf-input-email-3be76ea5\" \n				name=\"mf-email\" \n				placeholder=\"${ parent.decodeEntities(`Email`) } \" \n				onBlur=${parent.handleChange} onFocus=${parent.handleChange} aria-invalid=${validation.errors[\'mf-email\'] ? \'true\' : \'false\' } \n				ref=${el=> parent.activateValidation({\"message\":\"This field is required.\",\"emailMessage\":\"Please enter a valid Email address\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n							/>\n						<${validation.ErrorMessage} \n				errors=${validation.errors} \n				name=\"mf-email\" \n				as=${html``}\n			/>\n			<textarea id=\"mf-input-text-area-3b5c856\"\n				name=\"mf-textarea\" \n				placeholder=\"${ parent.decodeEntities(`Textarea`) } \"\n				cols=\"30\" rows=\"10\"\n									onInput=${ parent.handleChange }\n					aria-invalid=${validation.errors[\'mf-textarea\'] ? \'true\' : \'false\'}\n					ref=${ el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n								></textarea>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-textarea\"\n					as=${html``}\n					/>\n							<button type=\"submit\" id=\"\">\n					${ parent.decodeEntities(`Submit Button`) } \n				</button>','Contact Form','','publish','closed','closed','','contact-form','','','2023-06-21 14:25:54','2023-06-21 08:55:54','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=contact-form',0,'elementor_library','',0),(46,1,'2023-06-21 14:25:53','2023-06-21 08:55:53','','afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg','','inherit','','closed','','afro-woman-receiving-therapy-with-hot-stones-8k5xaqm-jpg','','','2023-06-21 14:25:53','2023-06-21 08:55:53','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg',0,'attachment','image/jpeg',0),(47,1,'2023-06-21 14:25:53','2023-06-21 08:55:53','<input \n				type=\"email\" \n				defaultValue=\"\" \n				class=\"mf-input \" \n				id=\"mf-input-email-f56a081\" \n				name=\"mf-email\" \n				placeholder=\"${ parent.decodeEntities(`Email`) } \" \n				onBlur=${parent.handleChange} onFocus=${parent.handleChange} aria-invalid=${validation.errors[\'mf-email\'] ? \'true\' : \'false\' } \n				ref=${el=> parent.activateValidation({\"message\":\"This field is required.\",\"emailMessage\":\"Please enter a valid Email address\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n							/>\n						<${validation.ErrorMessage} \n				errors=${validation.errors} \n				name=\"mf-email\" \n				as=${html``}\n			/>\n							<button type=\"submit\" id=\"\">\n										${ parent.decodeEntities(``) } \n				</button>','Newsletter Form','','publish','closed','closed','','newsletter-form','','','2023-06-21 14:25:55','2023-06-21 08:55:55','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=newsletter-form',0,'elementor_library','',0),(48,1,'2023-06-21 14:25:53','2023-06-21 08:55:53','','Contact Form','','inherit','closed','closed','','45-revision-v1','','','2023-06-21 14:25:53','2023-06-21 08:55:53','',45,'https://noha.in8.cdn-alpha.com/?p=48',0,'revision','',0),(49,1,'2023-06-21 14:25:54','2023-06-21 08:55:54','','4606-Mask-on-Face-1.png','','inherit','','closed','','4606-mask-on-face-1-png','','','2023-06-21 14:25:54','2023-06-21 08:55:54','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png',0,'attachment','image/png',0),(50,1,'2023-06-21 14:25:54','2023-06-21 08:55:54','<input\n				type=\"text\"\n				class=\"mf-input \"\n				id=\"mf-input-text-940e2e1\"\n				name=\"mf-text\"\n				placeholder=\"${ parent.decodeEntities(`Name`) } \"\n									onInput=${parent.handleChange}\n					onBlur=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-text\'] ? \'true\' : \'false\'}\n					ref=${el =>{\n												parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n					}}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-text\"\n					as=${html``}\n					/>\n			<input\n				type=\"text\"\n				class=\"mf-input \"\n				id=\"mf-input-text-17cfd00d\"\n				name=\"mf-text\"\n				placeholder=\"${ parent.decodeEntities(`Contact`) } \"\n									onInput=${parent.handleChange}\n					onBlur=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-text\'] ? \'true\' : \'false\'}\n					ref=${el =>{\n												parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n					}}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-text\"\n					as=${html``}\n					/>\n			<input \n				type=\"email\" \n				defaultValue=\"\" \n				class=\"mf-input \" \n				id=\"mf-input-email-3be76ea5\" \n				name=\"mf-email\" \n				placeholder=\"${ parent.decodeEntities(`Email`) } \" \n				onBlur=${parent.handleChange} onFocus=${parent.handleChange} aria-invalid=${validation.errors[\'mf-email\'] ? \'true\' : \'false\' } \n				ref=${el=> parent.activateValidation({\"message\":\"This field is required.\",\"emailMessage\":\"Please enter a valid Email address\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n							/>\n						<${validation.ErrorMessage} \n				errors=${validation.errors} \n				name=\"mf-email\" \n				as=${html``}\n			/>\n			<textarea id=\"mf-input-text-area-3b5c856\"\n				name=\"mf-textarea\" \n				placeholder=\"${ parent.decodeEntities(`Textarea`) } \"\n				cols=\"30\" rows=\"10\"\n									onInput=${ parent.handleChange }\n					aria-invalid=${validation.errors[\'mf-textarea\'] ? \'true\' : \'false\'}\n					ref=${ el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n								></textarea>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-textarea\"\n					as=${html``}\n					/>\n							<button type=\"submit\" id=\"\">\n					${ parent.decodeEntities(`Submit Button`) } \n				</button>','Contact Form','','inherit','closed','closed','','45-revision-v1','','','2023-06-21 14:25:54','2023-06-21 08:55:54','',45,'https://noha.in8.cdn-alpha.com/?p=50',0,'revision','',0),(51,1,'2023-06-21 14:25:54','2023-06-21 08:55:54','','Newsletter Form','','inherit','closed','closed','','47-revision-v1','','','2023-06-21 14:25:54','2023-06-21 08:55:54','',47,'https://noha.in8.cdn-alpha.com/?p=51',0,'revision','',0),(52,1,'2023-06-21 14:25:55','2023-06-21 08:55:55','<input \n				type=\"email\" \n				defaultValue=\"\" \n				class=\"mf-input \" \n				id=\"mf-input-email-f56a081\" \n				name=\"mf-email\" \n				placeholder=\"${ parent.decodeEntities(`Email`) } \" \n				onBlur=${parent.handleChange} onFocus=${parent.handleChange} aria-invalid=${validation.errors[\'mf-email\'] ? \'true\' : \'false\' } \n				ref=${el=> parent.activateValidation({\"message\":\"This field is required.\",\"emailMessage\":\"Please enter a valid Email address\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n							/>\n						<${validation.ErrorMessage} \n				errors=${validation.errors} \n				name=\"mf-email\" \n				as=${html``}\n			/>\n							<button type=\"submit\" id=\"\">\n										${ parent.decodeEntities(``) } \n				</button>','Newsletter Form','','inherit','closed','closed','','47-revision-v1','','','2023-06-21 14:25:55','2023-06-21 08:55:55','',47,'https://noha.in8.cdn-alpha.com/?p=52',0,'revision','',0),(53,1,'2023-06-21 14:25:55','2023-06-21 08:55:55','','elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4.png','','inherit','','closed','','elements-50-spa-line-green-black-icons-egvmgu-2017-12-07-4-png','','','2023-06-21 14:25:55','2023-06-21 08:55:55','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4.png',0,'attachment','image/png',0),(54,1,'2023-06-21 14:25:56','2023-06-21 08:55:56','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Frequently Asked Question</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"628\" height=\"602\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png 628w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1-300x288.png 300w\" sizes=\"(max-width: 628px) 100vw, 628px\" />															\n			<h2>Get Services Online Regarding Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>','FAQs','','publish','closed','closed','','faqs','','','2023-06-21 14:25:57','2023-06-21 08:55:57','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=faqs',0,'elementor_library','',0),(55,1,'2023-06-21 14:25:56','2023-06-21 08:55:56','','jasmine-flowers-white-3.1-Converted.png','','inherit','','closed','','jasmine-flowers-white-3-1-converted-png','','','2023-06-21 14:25:56','2023-06-21 08:55:56','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-3.1-Converted.png',0,'attachment','image/png',0),(56,1,'2023-06-21 14:25:57','2023-06-21 08:55:57','','Logo-Esseine.png','','inherit','','closed','','logo-esseine-png','','','2023-06-21 14:25:57','2023-06-21 08:55:57','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine.png',0,'attachment','image/png',0),(57,1,'2023-06-21 14:25:57','2023-06-21 08:55:57','','elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png','','inherit','','closed','','elements-50-spa-line-green-black-icons-egvmgu-2017-12-07-png','','','2023-06-21 14:25:57','2023-06-21 08:55:57','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png',0,'attachment','image/png',0),(58,1,'2023-06-21 14:25:57','2023-06-21 08:55:57','','FAQs','','inherit','closed','closed','','54-revision-v1','','','2023-06-21 14:25:57','2023-06-21 08:55:57','',54,'https://noha.in8.cdn-alpha.com/?p=58',0,'revision','',0),(59,1,'2023-06-21 14:25:57','2023-06-21 08:55:57','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Frequently Asked Question</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"628\" height=\"602\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png 628w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1-300x288.png 300w\" sizes=\"(max-width: 628px) 100vw, 628px\" />															\n			<h2>Get Services Online Regarding Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>','FAQs','','inherit','closed','closed','','54-revision-v1','','','2023-06-21 14:25:57','2023-06-21 08:55:57','',54,'https://noha.in8.cdn-alpha.com/?p=59',0,'revision','',0),(60,1,'2023-06-21 14:25:58','2023-06-21 08:55:58','','beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg','','inherit','','closed','','beautiful-woman-lying-on-massage-table-in-spa-pa3zzd3-1-jpg','','','2023-06-21 14:25:58','2023-06-21 08:55:58','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg',0,'attachment','image/jpeg',0),(61,1,'2023-06-21 14:25:58','2023-06-21 08:55:58','','jasmine-flowers-white-2-Converted.png','','inherit','','closed','','jasmine-flowers-white-2-converted-png','','','2023-06-21 14:25:58','2023-06-21 08:55:58','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-2-Converted.png',0,'attachment','image/png',0),(62,1,'2023-06-21 14:25:59','2023-06-21 08:55:59','','Logo-Esseine-White.png','','inherit','','closed','','logo-esseine-white-png','','','2023-06-21 14:25:59','2023-06-21 08:55:59','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White.png',0,'attachment','image/png',0),(63,1,'2023-06-21 14:26:00','2023-06-21 08:56:00','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"283\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine.png 985w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-300x106.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-768x271.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Header White','','publish','closed','closed','','header-white','','','2023-06-21 14:26:01','2023-06-21 08:56:01','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=header-white',0,'elementor_library','',0),(64,1,'2023-06-21 14:26:00','2023-06-21 08:56:00','','elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11.png','','inherit','','closed','','elements-50-spa-line-green-black-icons-egvmgu-2017-12-07-11-png','','','2023-06-21 14:26:00','2023-06-21 08:56:00','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11.png',0,'attachment','image/png',0),(65,1,'2023-06-21 14:26:00','2023-06-21 08:56:00','','petik.png','','inherit','','closed','','petik-png','','','2023-06-21 14:26:00','2023-06-21 08:56:00','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png',0,'attachment','image/png',0),(66,1,'2023-06-21 14:26:01','2023-06-21 08:56:01','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Articles & News</h1>		\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Get Services Online Regarding Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>','Blog','','publish','closed','closed','','blog','','','2023-06-21 14:26:02','2023-06-21 08:56:02','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=blog',0,'elementor_library','',0),(67,1,'2023-06-21 14:26:01','2023-06-21 08:56:01','','Header White','','inherit','closed','closed','','63-revision-v1','','','2023-06-21 14:26:01','2023-06-21 08:56:01','',63,'https://noha.in8.cdn-alpha.com/?p=67',0,'revision','',0),(68,1,'2023-06-21 14:26:01','2023-06-21 08:56:01','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"283\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White.png 985w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White-300x106.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White-768x271.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Home</h2>		\n			<link rel=\"stylesheet\" href=\"https://noha.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Services</h2>		\n					<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li>\n										Riverside Building, County Hall, London SE1 7PB, United Kingdom\n									</li>\n								<li>\n										+375(76) 878-76-76<br>contact@esseine.com\n									</li>\n						</ul>\n			<h2>© 2021 Esseine Template • All Rights Reserved</h2>','Footer','','publish','closed','closed','','footer','','','2023-06-21 14:26:03','2023-06-21 08:56:03','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=footer',0,'elementor_library','',0),(69,1,'2023-06-21 14:26:01','2023-06-21 08:56:01','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"283\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine.png 985w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-300x106.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-768x271.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Header White','','inherit','closed','closed','','63-revision-v1','','','2023-06-21 14:26:01','2023-06-21 08:56:01','',63,'https://noha.in8.cdn-alpha.com/?p=69',0,'revision','',0),(70,1,'2023-06-21 14:26:02','2023-06-21 08:56:02','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"283\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White.png 985w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White-300x106.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White-768x271.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Header Background','','publish','closed','closed','','header-background','','','2023-06-21 14:26:03','2023-06-21 08:56:03','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=header-background',0,'elementor_library','',0),(71,1,'2023-06-21 14:26:02','2023-06-21 08:56:02','','massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg','','inherit','','closed','','massage-therapist-in-white-uniform-making-spa-trea-xftm49x-jpg','','','2023-06-21 14:26:02','2023-06-21 08:56:02','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg',0,'attachment','image/jpeg',0),(72,1,'2023-06-21 14:26:02','2023-06-21 08:56:02','','Blog','','inherit','closed','closed','','66-revision-v1','','','2023-06-21 14:26:02','2023-06-21 08:56:02','',66,'https://noha.in8.cdn-alpha.com/?p=72',0,'revision','',0),(73,1,'2023-06-21 14:26:02','2023-06-21 08:56:02','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Articles & News</h1>		\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Get Services Online Regarding Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>','Blog','','inherit','closed','closed','','66-revision-v1','','','2023-06-21 14:26:02','2023-06-21 08:56:02','',66,'https://noha.in8.cdn-alpha.com/?p=73',0,'revision','',0),(74,1,'2023-06-21 14:26:02','2023-06-21 08:56:02','','Footer','','inherit','closed','closed','','68-revision-v1','','','2023-06-21 14:26:02','2023-06-21 08:56:02','',68,'https://noha.in8.cdn-alpha.com/?p=74',0,'revision','',0),(75,1,'2023-06-21 14:26:03','2023-06-21 08:56:03','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"283\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White.png 985w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White-300x106.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White-768x271.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Home</h2>		\n			<link rel=\"stylesheet\" href=\"https://noha.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Services</h2>		\n					<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li>\n										Riverside Building, County Hall, London SE1 7PB, United Kingdom\n									</li>\n								<li>\n										+375(76) 878-76-76<br>contact@esseine.com\n									</li>\n						</ul>\n			<h2>© 2021 Esseine Template • All Rights Reserved</h2>','Footer','','inherit','closed','closed','','68-revision-v1','','','2023-06-21 14:26:03','2023-06-21 08:56:03','',68,'https://noha.in8.cdn-alpha.com/?p=75',0,'revision','',0),(76,1,'2023-06-21 14:26:03','2023-06-21 08:56:03','','spa-Y2EBL9H.jpg','','inherit','','closed','','spa-y2ebl9h-jpg','','','2023-06-21 14:26:03','2023-06-21 08:56:03','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-Y2EBL9H.jpg',0,'attachment','image/jpeg',0),(77,1,'2023-06-21 14:26:03','2023-06-21 08:56:03','','Header Background','','inherit','closed','closed','','70-revision-v1','','','2023-06-21 14:26:03','2023-06-21 08:56:03','',70,'https://noha.in8.cdn-alpha.com/?p=77',0,'revision','',0),(78,1,'2023-06-21 14:26:03','2023-06-21 08:56:03','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"283\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White.png 985w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White-300x106.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White-768x271.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Header Background','','inherit','closed','closed','','70-revision-v1','','','2023-06-21 14:26:03','2023-06-21 08:56:03','',70,'https://noha.in8.cdn-alpha.com/?p=78',0,'revision','',0),(79,1,'2023-06-21 14:26:04','2023-06-21 08:56:04','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"618\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-23.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-23.png 618w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-23-300x165.png 300w\" sizes=\"(max-width: 618px) 100vw, 618px\" />															\n															<img width=\"800\" height=\"554\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-branch-white1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-branch-white1.png 855w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-branch-white1-300x208.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-branch-white1-768x532.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"784\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-3.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-3.1-Converted.png 970w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-3.1-Converted-300x294.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-3.1-Converted-768x752.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"628\" height=\"602\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png 628w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1-300x288.png 300w\" sizes=\"(max-width: 628px) 100vw, 628px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>404</h2>		\n			<h2>Page Not Found !!</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<a href=\"#\">\n						Go Back\n					</a>','404','','publish','closed','closed','','404','','','2023-06-21 14:26:05','2023-06-21 08:56:05','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=404',0,'elementor_library','',0),(80,1,'2023-06-21 14:26:04','2023-06-21 08:56:04','','woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg','','inherit','','closed','','woman-cosmetologist-to-work-in-beauty-salon-pxuh8bp-jpg','','','2023-06-21 14:26:04','2023-06-21 08:56:04','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg',0,'attachment','image/jpeg',0),(81,1,'2023-06-21 14:26:04','2023-06-21 08:56:04','','404','','inherit','closed','closed','','79-revision-v1','','','2023-06-21 14:26:04','2023-06-21 08:56:04','',79,'https://noha.in8.cdn-alpha.com/?p=81',0,'revision','',0),(82,1,'2023-06-21 14:26:05','2023-06-21 08:56:05','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"618\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-23.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-23.png 618w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-23-300x165.png 300w\" sizes=\"(max-width: 618px) 100vw, 618px\" />															\n															<img width=\"800\" height=\"554\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-branch-white1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-branch-white1.png 855w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-branch-white1-300x208.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-branch-white1-768x532.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"784\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-3.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-3.1-Converted.png 970w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-3.1-Converted-300x294.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-3.1-Converted-768x752.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"628\" height=\"602\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png 628w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1-300x288.png 300w\" sizes=\"(max-width: 628px) 100vw, 628px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>404</h2>		\n			<h2>Page Not Found !!</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<a href=\"#\">\n						Go Back\n					</a>','404','','inherit','closed','closed','','79-revision-v1','','','2023-06-21 14:26:05','2023-06-21 08:56:05','',79,'https://noha.in8.cdn-alpha.com/?p=82',0,'revision','',0),(83,1,'2023-06-21 14:26:06','2023-06-21 08:56:06','','spring-spa-setting-PQSX3EK.png','','inherit','','closed','','spring-spa-setting-pqsx3ek-png','','','2023-06-21 14:26:06','2023-06-21 08:56:06','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png',0,'attachment','image/png',0),(84,1,'2023-06-21 14:26:06','2023-06-21 08:56:06','','beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg','','inherit','','closed','','beautiful-girl-in-the-spa-hotel-pgvt9ek-jpg','','','2023-06-21 14:26:06','2023-06-21 08:56:06','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg',0,'attachment','image/jpeg',0),(85,1,'2023-06-21 14:26:07','2023-06-21 08:56:07','','two-young-woman-applying-moisturizing-cream-each-o-R9WC5FN.jpg','','inherit','','closed','','two-young-woman-applying-moisturizing-cream-each-o-r9wc5fn-jpg','','','2023-06-21 14:26:07','2023-06-21 08:56:07','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/two-young-woman-applying-moisturizing-cream-each-o-R9WC5FN.jpg',0,'attachment','image/jpeg',0),(86,1,'2023-06-21 14:26:07','2023-06-21 08:56:07','','beauty-sleep-7DRHLVJ-1.jpg','','inherit','','closed','','beauty-sleep-7drhlvj-1-jpg','','','2023-06-21 14:26:07','2023-06-21 08:56:07','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg',0,'attachment','image/jpeg',0),(87,1,'2023-06-21 14:26:08','2023-06-21 08:56:08','','elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10.png','','inherit','','closed','','elements-50-spa-line-green-black-icons-egvmgu-2017-12-07-10-png','','','2023-06-21 14:26:08','2023-06-21 08:56:08','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10.png',0,'attachment','image/png',0),(88,1,'2023-06-21 14:26:09','2023-06-21 08:56:09','','spring-spa-setting-PQSX3EK.jpg','','inherit','','closed','','spring-spa-setting-pqsx3ek-jpg','','','2023-06-21 14:26:09','2023-06-21 08:56:09','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg',0,'attachment','image/jpeg',0),(89,1,'2023-06-21 14:26:10','2023-06-21 08:56:10','','beautiful-young-woman-at-a-spa-salon-PCXQB3L.jpg','','inherit','','closed','','beautiful-young-woman-at-a-spa-salon-pcxqb3l-jpg','','','2023-06-21 14:26:10','2023-06-21 08:56:10','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-at-a-spa-salon-PCXQB3L.jpg',0,'attachment','image/jpeg',0),(90,1,'2023-06-21 14:26:10','2023-06-21 08:56:10','','happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg','','inherit','','closed','','happy-cheerful-redheaded-female-relaxing-at-the-sp-md2cy8d-2-jpg','','','2023-06-21 14:26:10','2023-06-21 08:56:10','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg',0,'attachment','image/jpeg',0),(91,1,'2023-06-21 14:26:11','2023-06-21 08:56:11','','elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12.png','','inherit','','closed','','elements-50-spa-line-green-black-icons-egvmgu-2017-12-07-12-png','','','2023-06-21 14:26:11','2023-06-21 08:56:11','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12.png',0,'attachment','image/png',0),(92,1,'2023-06-21 14:26:12','2023-06-21 08:56:12','','relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg','','inherit','','closed','','relaxed-cosmetologist-ready-for-treating-her-patie-972wayb-jpg','','','2023-06-21 14:26:12','2023-06-21 08:56:12','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg',0,'attachment','image/jpeg',0),(93,1,'2023-06-21 14:26:13','2023-06-21 08:56:13','','beautiful-girl-in-the-spa-hotel-PGVT9EK-1.jpg','','inherit','','closed','','beautiful-girl-in-the-spa-hotel-pgvt9ek-1-jpg','','','2023-06-21 14:26:13','2023-06-21 08:56:13','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-1.jpg',0,'attachment','image/jpeg',0),(94,1,'2023-06-21 14:26:13','2023-06-21 08:56:13','','jasmine-flowers-white-4.1-Converted.png','','inherit','','closed','','jasmine-flowers-white-4-1-converted-png','','','2023-06-21 14:26:13','2023-06-21 08:56:13','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png',0,'attachment','image/png',0),(95,1,'2023-06-21 14:26:13','2023-06-21 08:56:13','','jasmine-flowers-white-1-Converted.png','','inherit','','closed','','jasmine-flowers-white-1-converted-png','','','2023-06-21 14:26:13','2023-06-21 08:56:13','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png',0,'attachment','image/png',0),(96,1,'2023-06-21 14:26:13','2023-06-21 08:56:13','','jasmine-flowers-white-4.1-Converted.png','','inherit','','closed','','jasmine-flowers-white-4-1-converted-png-2','','','2023-06-21 14:26:13','2023-06-21 08:56:13','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-1.png',0,'attachment','image/png',0),(97,1,'2023-06-21 14:26:17','2023-06-21 08:56:17','','woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png','','inherit','','closed','','woman-spa-mask-black-half-face-beauty-concept-m9zahjy-png','','','2023-06-21 14:26:17','2023-06-21 08:56:17','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png',0,'attachment','image/png',0),(98,1,'2023-06-21 14:26:17','2023-06-21 08:56:17','','elements-eye-logo-VXUKND-2018-11-20.png','','inherit','','closed','','elements-eye-logo-vxuknd-2018-11-20-png','','','2023-06-21 14:26:17','2023-06-21 08:56:17','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png',0,'attachment','image/png',0),(99,1,'2023-06-21 14:26:18','2023-06-21 08:56:18','','woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png','','inherit','','closed','','woman-spa-mask-black-half-face-beauty-concept-m9zahjy-png-2','','','2023-06-21 14:26:18','2023-06-21 08:56:18','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1.png',0,'attachment','image/png',0),(100,1,'2023-06-21 14:26:19','2023-06-21 08:56:19','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Pricing</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>\nFace Facial</h2>		\n			<h2>$ 26</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Detoxifying</h2>		\n			<h2>$ 23</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Lomilomi Massage</h2>		\n			<h2>$ 32</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body Massage</h2>		\n			<h2>$ 21</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Wellness Relaxing</h2>		\n			<h2>$ 22</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Sauna</h2>		\n			<h2>$ 34</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>Pricing Question</h2>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>','Pricing','','publish','closed','closed','','pricing','','','2023-06-21 14:26:20','2023-06-21 08:56:20','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=pricing',0,'elementor_library','',0),(101,1,'2023-06-21 14:26:19','2023-06-21 08:56:19','','Pricing','','inherit','closed','closed','','100-revision-v1','','','2023-06-21 14:26:19','2023-06-21 08:56:19','',100,'https://noha.in8.cdn-alpha.com/?p=101',0,'revision','',0),(102,1,'2023-06-21 14:26:20','2023-06-21 08:56:20','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Pricing</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>\nFace Facial</h2>		\n			<h2>$ 26</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Detoxifying</h2>		\n			<h2>$ 23</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Lomilomi Massage</h2>		\n			<h2>$ 32</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body Massage</h2>		\n			<h2>$ 21</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Wellness Relaxing</h2>		\n			<h2>$ 22</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Sauna</h2>		\n			<h2>$ 34</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>Pricing Question</h2>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>','Pricing','','inherit','closed','closed','','100-revision-v1','','','2023-06-21 14:26:20','2023-06-21 08:56:20','',100,'https://noha.in8.cdn-alpha.com/?p=102',0,'revision','',0),(103,1,'2023-06-21 14:26:20','2023-06-21 08:56:20','','elements-relax-resort-logo-template-GF6XU7-2019-02-17.png','','inherit','','closed','','elements-relax-resort-logo-template-gf6xu7-2019-02-17-png','','','2023-06-21 14:26:20','2023-06-21 08:56:20','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png',0,'attachment','image/png',0),(104,1,'2023-06-21 14:26:20','2023-06-21 08:56:20','','happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg','','inherit','','closed','','happy-cheerful-redheaded-female-relaxing-at-the-sp-md2cy8d-jpg','','','2023-06-21 14:26:20','2023-06-21 08:56:20','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg',0,'attachment','image/jpeg',0),(105,1,'2023-06-21 14:26:21','2023-06-21 08:56:21','','woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1.png','','inherit','','closed','','woman-spa-mask-black-half-face-beauty-concept-m9zahjy-1-png','','','2023-06-21 14:26:21','2023-06-21 08:56:21','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png',0,'attachment','image/png',0),(106,1,'2023-06-21 14:26:22','2023-06-21 08:56:22','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Lookbook</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"691\" height=\"917\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-2-Converted.png 691w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-2-Converted-226x300.png 226w\" sizes=\"(max-width: 691px) 100vw, 691px\" />															\n			<h2>Our Gallery</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>		\n			<h2>Portfolio Esseine</h2>		\n															<img width=\"666\" height=\"1000\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-Y2EBL9H.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-Y2EBL9H.jpg 666w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-Y2EBL9H-200x300.jpg 200w\" sizes=\"(max-width: 666px) 100vw, 666px\" />															\n															<img width=\"666\" height=\"1000\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/two-young-woman-applying-moisturizing-cream-each-o-R9WC5FN.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/two-young-woman-applying-moisturizing-cream-each-o-R9WC5FN.jpg 666w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/two-young-woman-applying-moisturizing-cream-each-o-R9WC5FN-200x300.jpg 200w\" sizes=\"(max-width: 666px) 100vw, 666px\" />															\n															<img width=\"666\" height=\"1000\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-at-a-spa-salon-PCXQB3L.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-at-a-spa-salon-PCXQB3L.jpg 666w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-at-a-spa-salon-PCXQB3L-200x300.jpg 200w\" sizes=\"(max-width: 666px) 100vw, 666px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-1-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-1-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-1-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-1-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-1.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Gallery','','publish','closed','closed','','gallery','','','2023-06-21 14:26:23','2023-06-21 08:56:23','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=gallery',0,'elementor_library','',0),(107,1,'2023-06-21 14:26:23','2023-06-21 08:56:23','','woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1.png','','inherit','','closed','','woman-spa-mask-black-half-face-beauty-concept-m9zahjy-1-png-2','','','2023-06-21 14:26:23','2023-06-21 08:56:23','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-2.png',0,'attachment','image/png',0),(108,1,'2023-06-21 14:26:22','2023-06-21 08:56:22','','Gallery','','inherit','closed','closed','','106-revision-v1','','','2023-06-21 14:26:22','2023-06-21 08:56:22','',106,'https://noha.in8.cdn-alpha.com/?p=108',0,'revision','',0),(109,1,'2023-06-21 14:26:23','2023-06-21 08:56:23','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Lookbook</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"691\" height=\"917\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-2-Converted.png 691w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-2-Converted-226x300.png 226w\" sizes=\"(max-width: 691px) 100vw, 691px\" />															\n			<h2>Our Gallery</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>		\n			<h2>Portfolio Esseine</h2>		\n															<img width=\"666\" height=\"1000\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-Y2EBL9H.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-Y2EBL9H.jpg 666w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-Y2EBL9H-200x300.jpg 200w\" sizes=\"(max-width: 666px) 100vw, 666px\" />															\n															<img width=\"666\" height=\"1000\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/two-young-woman-applying-moisturizing-cream-each-o-R9WC5FN.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/two-young-woman-applying-moisturizing-cream-each-o-R9WC5FN.jpg 666w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/two-young-woman-applying-moisturizing-cream-each-o-R9WC5FN-200x300.jpg 200w\" sizes=\"(max-width: 666px) 100vw, 666px\" />															\n															<img width=\"666\" height=\"1000\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-at-a-spa-salon-PCXQB3L.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-at-a-spa-salon-PCXQB3L.jpg 666w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-at-a-spa-salon-PCXQB3L-200x300.jpg 200w\" sizes=\"(max-width: 666px) 100vw, 666px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-1-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-1-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-1-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-1-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-1.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Gallery','','inherit','closed','closed','','106-revision-v1','','','2023-06-21 14:26:23','2023-06-21 08:56:23','',106,'https://noha.in8.cdn-alpha.com/?p=109',0,'revision','',0),(110,1,'2023-06-21 14:26:23','2023-06-21 08:56:23','','elements-rose-flower-logo-Q83854-2017-10-29.png','','inherit','','closed','','elements-rose-flower-logo-q83854-2017-10-29-png','','','2023-06-21 14:26:23','2023-06-21 08:56:23','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png',0,'attachment','image/png',0),(111,1,'2023-06-21 14:26:26','2023-06-21 08:56:26','','face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg','','inherit','','closed','','face-peeling-mask-spa-beauty-treatment-skincare-fnhbx4m-jpg','','','2023-06-21 14:26:26','2023-06-21 08:56:26','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg',0,'attachment','image/jpeg',0),(112,1,'2023-06-21 14:26:26','2023-06-21 08:56:26','','elements-wellness-logo-template-XG9DU8Z-2020-12-11.png','','inherit','','closed','','elements-wellness-logo-template-xg9du8z-2020-12-11-png','','','2023-06-21 14:26:26','2023-06-21 08:56:26','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png',0,'attachment','image/png',0),(113,1,'2023-06-21 14:26:27','2023-06-21 08:56:27','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Services</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','publish','closed','closed','','services','','','2023-06-21 14:26:28','2023-06-21 08:56:28','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=services',0,'elementor_library','',0),(114,1,'2023-06-21 14:26:28','2023-06-21 08:56:28','','beautiful-female-receptionist-at-dental-clinic-2YCKZQV.jpg','','inherit','','closed','','beautiful-female-receptionist-at-dental-clinic-2yckzqv-jpg','','','2023-06-21 14:26:28','2023-06-21 08:56:28','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-female-receptionist-at-dental-clinic-2YCKZQV.jpg',0,'attachment','image/jpeg',0),(115,1,'2023-06-21 14:26:28','2023-06-21 08:56:28','','Services','','inherit','closed','closed','','113-revision-v1','','','2023-06-21 14:26:28','2023-06-21 08:56:28','',113,'https://noha.in8.cdn-alpha.com/?p=115',0,'revision','',0),(116,1,'2023-06-21 14:26:28','2023-06-21 08:56:28','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Services</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','113-revision-v1','','','2023-06-21 14:26:28','2023-06-21 08:56:28','',113,'https://noha.in8.cdn-alpha.com/?p=116',0,'revision','',0),(117,1,'2023-06-21 14:26:29','2023-06-21 08:56:29','','relaxing-spa-procedure-YWFXDHM.jpg','','inherit','','closed','','relaxing-spa-procedure-ywfxdhm-jpg','','','2023-06-21 14:26:29','2023-06-21 08:56:29','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg',0,'attachment','image/jpeg',0),(118,1,'2023-06-21 14:26:31','2023-06-21 08:56:31','','beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg','','inherit','','closed','','beautiful-young-woman-in-spa-salon-massage-relax-a-35ydxgc-jpg','','','2023-06-21 14:26:31','2023-06-21 08:56:31','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg',0,'attachment','image/jpeg',0),(119,1,'2023-06-21 14:26:31','2023-06-21 08:56:31','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>About Us</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"418\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white2.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white2-300x287.png 300w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>\nEsseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Why We Are Different</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Dermatologist Tested</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Certificated Staff</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Strategic Place</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Experienced</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Comfortable</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Trusted</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>','About Us','','publish','closed','closed','','about-us','','','2023-06-21 14:26:33','2023-06-21 08:56:33','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=about-us',0,'elementor_library','',0),(120,1,'2023-06-21 14:26:32','2023-06-21 08:56:32','','About Us','','inherit','closed','closed','','119-revision-v1','','','2023-06-21 14:26:32','2023-06-21 08:56:32','',119,'https://noha.in8.cdn-alpha.com/?p=120',0,'revision','',0),(121,1,'2023-06-21 14:26:33','2023-06-21 08:56:33','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>About Us</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"418\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white2.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white2-300x287.png 300w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>\nEsseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Why We Are Different</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-4-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Dermatologist Tested</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-11-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Certificated Staff</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Strategic Place</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Experienced</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-10-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Comfortable</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-12-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Trusted</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>','About Us','','inherit','closed','closed','','119-revision-v1','','','2023-06-21 14:26:33','2023-06-21 08:56:33','',119,'https://noha.in8.cdn-alpha.com/?p=121',0,'revision','',0),(122,1,'2023-06-21 14:26:34','2023-06-21 08:56:34','','beauty-treatment-in-spa-8KRHVMY.jpg','','inherit','','closed','','beauty-treatment-in-spa-8krhvmy-jpg','','','2023-06-21 14:26:34','2023-06-21 08:56:34','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg',0,'attachment','image/jpeg',0),(123,1,'2023-06-21 14:26:34','2023-06-21 08:56:34','','happy-young-african-american-smiling-woman-satisfi-DY6CFT2.jpg','','inherit','','closed','','happy-young-african-american-smiling-woman-satisfi-dy6cft2-jpg','','','2023-06-21 14:26:34','2023-06-21 08:56:34','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-young-african-american-smiling-woman-satisfi-DY6CFT2.jpg',0,'attachment','image/jpeg',0),(124,1,'2023-06-21 14:26:35','2023-06-21 08:56:35','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Treatment Package</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority\n</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-479e5e91 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-479e5e91 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Treatment Package','','publish','closed','closed','','treatment-package','','','2023-06-21 14:26:36','2023-06-21 08:56:36','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=treatment-package',0,'elementor_library','',0),(125,1,'2023-06-21 14:26:35','2023-06-21 08:56:35','','Treatment Package','','inherit','closed','closed','','124-revision-v1','','','2023-06-21 14:26:35','2023-06-21 08:56:35','',124,'https://noha.in8.cdn-alpha.com/?p=125',0,'revision','',0),(126,1,'2023-06-21 14:26:36','2023-06-21 08:56:36','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Treatment Package</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority\n</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-479e5e91 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-479e5e91 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Treatment Package','','inherit','closed','closed','','124-revision-v1','','','2023-06-21 14:26:36','2023-06-21 08:56:36','',124,'https://noha.in8.cdn-alpha.com/?p=126',0,'revision','',0),(127,1,'2023-06-21 14:26:40','2023-06-21 08:56:40','','cheerful-female-cosmetologist-standing-against-whi-3VX78XN.jpg','','inherit','','closed','','cheerful-female-cosmetologist-standing-against-whi-3vx78xn-jpg','','','2023-06-21 14:26:40','2023-06-21 08:56:40','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/cheerful-female-cosmetologist-standing-against-whi-3VX78XN.jpg',0,'attachment','image/jpeg',0),(128,1,'2023-06-21 14:26:43','2023-06-21 08:56:43','','elements-eye-logo-VXUKND-2018-11-20-1.png','','inherit','','closed','','elements-eye-logo-vxuknd-2018-11-20-1-png','','','2023-06-21 14:26:43','2023-06-21 08:56:43','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-1.png',0,'attachment','image/png',0),(129,1,'2023-06-21 14:26:46','2023-06-21 08:56:46','','elements-relax-resort-logo-template-GF6XU7-2019-02-17-1.png','','inherit','','closed','','elements-relax-resort-logo-template-gf6xu7-2019-02-17-1-png','','','2023-06-21 14:26:46','2023-06-21 08:56:46','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-1.png',0,'attachment','image/png',0),(130,1,'2023-06-21 14:26:48','2023-06-21 08:56:48','','elements-rose-flower-logo-Q83854-2017-10-29-1.png','','inherit','','closed','','elements-rose-flower-logo-q83854-2017-10-29-1-png','','','2023-06-21 14:26:48','2023-06-21 08:56:48','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-1.png',0,'attachment','image/png',0),(131,1,'2023-06-21 14:26:50','2023-06-21 08:56:50','','elements-wellness-logo-template-XG9DU8Z-2020-12-11-2.png','','inherit','','closed','','elements-wellness-logo-template-xg9du8z-2020-12-11-2-png','','','2023-06-21 14:26:50','2023-06-21 08:56:50','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-2.png',0,'attachment','image/png',0),(132,1,'2023-06-21 14:26:51','2023-06-21 08:56:51','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-1cdaab0 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-1cdaab0 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','publish','closed','closed','','home','','','2023-06-21 14:26:53','2023-06-21 08:56:53','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=home',0,'elementor_library','',0),(133,1,'2023-06-21 14:26:52','2023-06-21 08:56:52','','Home','','inherit','closed','closed','','132-revision-v1','','','2023-06-21 14:26:52','2023-06-21 08:56:52','',132,'https://noha.in8.cdn-alpha.com/?p=133',0,'revision','',0),(134,1,'2023-06-21 14:26:53','2023-06-21 08:56:53','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-1cdaab0 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-1cdaab0 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','132-revision-v1','','','2023-06-21 14:26:53','2023-06-21 08:56:53','',132,'https://noha.in8.cdn-alpha.com/?p=134',0,'revision','',0),(135,1,'2023-06-21 14:26:55','2023-06-21 08:56:55','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Meet Our Team</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-at-spring-park-P4PZ4CT-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-at-spring-park-P4PZ4CT-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-at-spring-park-P4PZ4CT-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-at-spring-park-P4PZ4CT-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-at-spring-park-P4PZ4CT.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Sovia Evelyn</h2>		\n		<p>Director Essiene</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-female-receptionist-at-dental-clinic-2YCKZQV-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-female-receptionist-at-dental-clinic-2YCKZQV-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-female-receptionist-at-dental-clinic-2YCKZQV-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-female-receptionist-at-dental-clinic-2YCKZQV-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-female-receptionist-at-dental-clinic-2YCKZQV.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-young-african-american-smiling-woman-satisfi-DY6CFT2-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-young-african-american-smiling-woman-satisfi-DY6CFT2-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-young-african-american-smiling-woman-satisfi-DY6CFT2-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-young-african-american-smiling-woman-satisfi-DY6CFT2-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-young-african-american-smiling-woman-satisfi-DY6CFT2.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/cheerful-female-cosmetologist-standing-against-whi-3VX78XN-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/cheerful-female-cosmetologist-standing-against-whi-3VX78XN-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/cheerful-female-cosmetologist-standing-against-whi-3VX78XN-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/cheerful-female-cosmetologist-standing-against-whi-3VX78XN-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/cheerful-female-cosmetologist-standing-against-whi-3VX78XN.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"568\" height=\"508\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-1.png 568w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-1-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-1.png 568w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-1-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-1.png 568w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-1-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-2.png 568w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-2-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-431fbdcb .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-431fbdcb .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Team','','publish','closed','closed','','team','','','2023-06-21 14:26:56','2023-06-21 08:56:56','',0,'https://noha.in8.cdn-alpha.com/?elementor_library=team',0,'elementor_library','',0),(136,1,'2023-06-21 14:26:56','2023-06-21 08:56:56','','Team','','inherit','closed','closed','','135-revision-v1','','','2023-06-21 14:26:56','2023-06-21 08:56:56','',135,'https://noha.in8.cdn-alpha.com/?p=136',0,'revision','',0),(137,1,'2023-06-21 14:26:56','2023-06-21 08:56:56','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Meet Our Team</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-at-spring-park-P4PZ4CT-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-at-spring-park-P4PZ4CT-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-at-spring-park-P4PZ4CT-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-at-spring-park-P4PZ4CT-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-at-spring-park-P4PZ4CT.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Sovia Evelyn</h2>		\n		<p>Director Essiene</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-female-receptionist-at-dental-clinic-2YCKZQV-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-female-receptionist-at-dental-clinic-2YCKZQV-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-female-receptionist-at-dental-clinic-2YCKZQV-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-female-receptionist-at-dental-clinic-2YCKZQV-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-female-receptionist-at-dental-clinic-2YCKZQV.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-young-african-american-smiling-woman-satisfi-DY6CFT2-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-young-african-american-smiling-woman-satisfi-DY6CFT2-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-young-african-american-smiling-woman-satisfi-DY6CFT2-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-young-african-american-smiling-woman-satisfi-DY6CFT2-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-young-african-american-smiling-woman-satisfi-DY6CFT2.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/cheerful-female-cosmetologist-standing-against-whi-3VX78XN-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/cheerful-female-cosmetologist-standing-against-whi-3VX78XN-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/cheerful-female-cosmetologist-standing-against-whi-3VX78XN-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/cheerful-female-cosmetologist-standing-against-whi-3VX78XN-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/cheerful-female-cosmetologist-standing-against-whi-3VX78XN.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"568\" height=\"508\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-1.png 568w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-1-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-1.png 568w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-1-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-1.png 568w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-1-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-2.png 568w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-2-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-431fbdcb .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-431fbdcb .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Team','','inherit','closed','closed','','135-revision-v1','','','2023-06-21 14:26:56','2023-06-21 08:56:56','',135,'https://noha.in8.cdn-alpha.com/?p=137',0,'revision','',0),(138,1,'2023-06-21 14:27:51','0000-00-00 00:00:00','','Auto Draft','','auto-draft','','open','','','','','2023-06-21 14:27:51','0000-00-00 00:00:00','',0,'https://noha.in8.cdn-alpha.com/?p=138',0,'post','',0),(139,1,'2023-06-21 14:28:23','2023-06-21 08:58:23','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"639\" height=\"1024\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-639x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-639x1024.webp 639w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-187x300.webp 187w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-768x1230.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-959x1536.webp 959w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-1279x2048.webp 1279w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-scaled.webp 1598w\" sizes=\"(max-width: 639px) 100vw, 639px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-5-01-1024x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-5-01-1024x1024.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-5-01-300x300.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-5-01-150x150.webp 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-5-01-768x768.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-5-01-1536x1536.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-5-01-2048x2048.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-02-1024x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-02-1024x1024.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-02-300x300.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-02-150x150.webp 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-02-768x768.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-02-1536x1536.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-02-2048x2048.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-03-1024x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-03-1024x1024.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-03-300x300.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-03-150x150.webp 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-03-768x768.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-03-1536x1536.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-03-2048x2048.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"483\" height=\"1024\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-483x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-483x1024.webp 483w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-141x300.webp 141w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-768x1629.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-724x1536.webp 724w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-966x2048.webp 966w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-scaled.webp 1207w\" sizes=\"(max-width: 483px) 100vw, 483px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','publish','closed','closed','','home','','','2023-06-21 17:34:50','2023-06-21 12:04:50','',0,'https://noha.in8.cdn-alpha.com/?page_id=139',0,'page','',0),(140,1,'2023-06-21 14:28:23','2023-06-21 08:58:23','','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 14:28:23','2023-06-21 08:58:23','',139,'https://noha.in8.cdn-alpha.com/?p=140',0,'revision','',0),(141,1,'2023-06-21 14:30:26','2023-06-21 09:00:26','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"170\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/noha-1.webp\" alt=\"at home by noha International\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/noha-1.webp 500w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/noha-1-300x102.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-7e843572\"><li id=\"menu-item-172\"><a href=\"https://athomenoha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://athomenoha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://athomenoha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://athomenoha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-198\"><a href=\"https://athomenoha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','publish','closed','closed','','header','','','2023-09-12 18:41:50','2023-09-12 13:11:50','',0,'https://noha.in8.cdn-alpha.com/?post_type=elementor-hf&#038;p=141',0,'elementor-hf','',0),(142,1,'2023-06-21 14:30:26','2023-06-21 09:00:26','','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 14:30:26','2023-06-21 09:00:26','',141,'https://noha.in8.cdn-alpha.com/?p=142',0,'revision','',0),(145,1,'2023-06-21 14:36:04','2023-06-21 09:06:04','','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 14:36:04','2023-06-21 09:06:04','',141,'https://noha.in8.cdn-alpha.com/?p=145',0,'revision','',0),(146,1,'2023-06-21 14:36:04','2023-06-21 09:06:04','','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 14:36:04','2023-06-21 09:06:04','',141,'https://noha.in8.cdn-alpha.com/?p=146',0,'revision','',0),(147,1,'2023-06-21 14:36:05','2023-06-21 09:06:05','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-1024x434.png\" alt=\"Noha International\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 14:36:05','2023-06-21 09:06:05','',141,'https://noha.in8.cdn-alpha.com/?p=147',0,'revision','',0),(148,1,'2023-06-21 14:37:00','2023-06-21 09:07:00','<style>/*! elementor - v3.16.0 - 12-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"170\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/at-home-noha-international.webp\" alt=\"at home noha international\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/at-home-noha-international.webp 500w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/at-home-noha-international-300x102.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<style>/*! elementor - v3.16.0 - 12-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.16.0 - 12-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Home</h2>		\n			<link rel=\"stylesheet\" href=\"https://athomenoha.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Services</h2>		\n					<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li>\n										227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\n									</li>\n								<li>\n										+375(76) 878-76-76<br>contact@esseine.com\n									</li>\n						</ul>\n			<h2>© 2023 Noha International • All Rights Reserved</h2>','Footer','','publish','closed','closed','','footer','','','2023-09-13 11:03:20','2023-09-13 05:33:20','',0,'https://noha.in8.cdn-alpha.com/?post_type=elementor-hf&#038;p=148',0,'elementor-hf','',0),(149,1,'2023-06-21 14:37:00','2023-06-21 09:07:00','','Footer','','inherit','closed','closed','','148-revision-v1','','','2023-06-21 14:37:00','2023-06-21 09:07:00','',148,'https://noha.in8.cdn-alpha.com/?p=149',0,'revision','',0),(151,1,'2023-06-21 14:42:32','2023-06-21 09:12:32','','Noha International','','inherit','closed','closed','','noha-international','','','2023-06-21 14:42:44','2023-06-21 09:12:44','',148,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International.png',0,'attachment','image/png',0),(152,1,'2023-06-21 14:42:56','2023-06-21 09:12:56','','Footer','','inherit','closed','closed','','148-revision-v1','','','2023-06-21 14:42:56','2023-06-21 09:12:56','',148,'https://noha.in8.cdn-alpha.com/?p=152',0,'revision','',0),(153,1,'2023-06-21 14:42:57','2023-06-21 09:12:57','','Footer','','inherit','closed','closed','','148-revision-v1','','','2023-06-21 14:42:57','2023-06-21 09:12:57','',148,'https://noha.in8.cdn-alpha.com/?p=153',0,'revision','',0),(154,1,'2023-06-21 14:42:58','2023-06-21 09:12:58','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"338\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png\" alt=\"Noha International\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-768x325.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1536x649.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-2048x866.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Home</h2>		\n			<link rel=\"stylesheet\" href=\"https://noha.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Services</h2>		\n					<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li>\n										Riverside Building, County Hall, London SE1 7PB, United Kingdom\n									</li>\n								<li>\n										+375(76) 878-76-76<br>contact@esseine.com\n									</li>\n						</ul>\n			<h2>© 2023 Noha International • All Rights Reserved</h2>','Footer','','inherit','closed','closed','','148-revision-v1','','','2023-06-21 14:42:58','2023-06-21 09:12:58','',148,'https://noha.in8.cdn-alpha.com/?p=154',0,'revision','',0),(155,1,'2023-06-21 14:43:46','2023-06-21 09:13:46','','Noha International 1','','inherit','','closed','','noha-international-1','','','2023-06-21 14:43:46','2023-06-21 09:13:46','',141,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1.png',0,'attachment','image/png',0),(156,1,'2023-06-21 14:44:04','2023-06-21 09:14:04','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-1024x434.png\" alt=\"Noha International\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 14:44:04','2023-06-21 09:14:04','',141,'https://noha.in8.cdn-alpha.com/?p=156',0,'revision','',0),(157,1,'2023-06-21 14:44:05','2023-06-21 09:14:05','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-1024x434.png\" alt=\"Noha International\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-Logo-01-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 14:44:05','2023-06-21 09:14:05','',141,'https://noha.in8.cdn-alpha.com/?p=157',0,'revision','',0),(158,1,'2023-06-21 14:44:06','2023-06-21 09:14:06','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 14:44:06','2023-06-21 09:14:06','',141,'https://noha.in8.cdn-alpha.com/?p=158',0,'revision','',0),(160,1,'2023-06-21 14:47:58','2023-06-21 09:17:58','','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 14:47:58','2023-06-21 09:17:58','',139,'https://noha.in8.cdn-alpha.com/?p=160',0,'revision','',0),(161,1,'2023-06-21 14:47:59','2023-06-21 09:17:59','','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 14:47:59','2023-06-21 09:17:59','',139,'https://noha.in8.cdn-alpha.com/?p=161',0,'revision','',0),(162,1,'2023-06-21 14:48:00','2023-06-21 09:18:00','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 14:48:00','2023-06-21 09:18:00','',139,'https://noha.in8.cdn-alpha.com/?p=162',0,'revision','',0),(163,1,'2023-06-21 14:53:46','2023-06-21 09:23:46','','About Us','','publish','closed','closed','','about-us','','','2023-06-21 14:53:46','2023-06-21 09:23:46','',0,'https://noha.in8.cdn-alpha.com/?page_id=163',0,'page','',0),(164,1,'2023-06-21 14:53:46','2023-06-21 09:23:46','','About Us','','inherit','closed','closed','','163-revision-v1','','','2023-06-21 14:53:46','2023-06-21 09:23:46','',163,'https://noha.in8.cdn-alpha.com/?p=164',0,'revision','',0),(165,1,'2023-06-21 14:54:11','2023-06-21 09:24:11','','Noha International Icon','','inherit','','closed','','noha-international-icon','','','2023-06-21 14:54:11','2023-06-21 09:24:11','',9,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-Icon.png',0,'attachment','image/png',0),(166,1,'2023-06-21 14:55:35','2023-06-21 09:25:35','','Kit Styles: Esseine','','inherit','closed','closed','','9-revision-v1','','','2023-06-21 14:55:35','2023-06-21 09:25:35','',9,'https://noha.in8.cdn-alpha.com/?p=166',0,'revision','',0),(167,1,'2023-06-21 14:56:20','2023-06-21 09:26:20','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Parlor At Home</h2>				\n					<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.</p>\n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        Premium Services\n                    </h3>\n                        Indulge in opulent pampering at our premium parlor services.                    \n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h5>\n                        Basic Services \n                    </h5>\n                        Elevate your style with essential salon treatments and pampering.                    \n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','publish','closed','closed','','services','','','2023-09-15 15:02:05','2023-09-15 09:32:05','',0,'https://noha.in8.cdn-alpha.com/?page_id=167',0,'page','',0),(168,1,'2023-06-21 14:56:20','2023-06-21 09:26:20','','Services','','inherit','closed','closed','','167-revision-v1','','','2023-06-21 14:56:20','2023-06-21 09:26:20','',167,'https://noha.in8.cdn-alpha.com/?p=168',0,'revision','',0),(170,1,'2023-06-21 14:58:45','2023-06-21 09:28:45','','FAQs','','publish','closed','closed','','faqs','','','2023-06-21 14:58:45','2023-06-21 09:28:45','',0,'https://noha.in8.cdn-alpha.com/?page_id=170',0,'page','',0),(171,1,'2023-06-21 14:58:45','2023-06-21 09:28:45','','FAQs','','inherit','closed','closed','','170-revision-v1','','','2023-06-21 14:58:45','2023-06-21 09:28:45','',170,'https://noha.in8.cdn-alpha.com/?p=171',0,'revision','',0),(172,1,'2023-06-21 15:12:29','2023-06-21 09:29:51',' ','','','publish','closed','closed','','172','','','2023-06-21 15:12:29','2023-06-21 09:42:29','',0,'https://noha.in8.cdn-alpha.com/?p=172',1,'nav_menu_item','',0),(173,1,'2023-06-21 15:12:29','2023-06-21 09:29:51',' ','','','publish','closed','closed','','173','','','2023-06-21 15:12:29','2023-06-21 09:42:29','',0,'https://noha.in8.cdn-alpha.com/?p=173',2,'nav_menu_item','',0),(174,1,'2023-06-21 15:12:30','2023-06-21 09:29:52',' ','','','publish','closed','closed','','174','','','2023-06-21 15:12:30','2023-06-21 09:42:30','',0,'https://noha.in8.cdn-alpha.com/?p=174',4,'nav_menu_item','',0),(175,1,'2023-06-21 15:12:30','2023-06-21 09:29:52',' ','','','publish','closed','closed','','175','','','2023-06-21 15:12:30','2023-06-21 09:42:30','',0,'https://noha.in8.cdn-alpha.com/?p=175',3,'nav_menu_item','',0),(183,1,'2023-06-21 15:04:51','2023-06-21 09:34:51','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 15:04:51','2023-06-21 09:34:51','',141,'https://noha.in8.cdn-alpha.com/?p=183',0,'revision','',0),(184,1,'2023-06-21 15:04:51','2023-06-21 09:34:51','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 15:04:51','2023-06-21 09:34:51','',141,'https://noha.in8.cdn-alpha.com/?p=184',0,'revision','',0),(185,1,'2023-06-21 15:04:52','2023-06-21 09:34:52','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-7e843572\"><li id=\"menu-item-172\"><a href=\"https://noha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://noha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://noha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://noha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-182\"><a href=\"https://noha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>\n															<img width=\"800\" height=\"283\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White.png 985w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White-300x106.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White-768x271.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-5356d617\"><li id=\"menu-item-172\"><a href=\"https://noha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://noha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://noha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://noha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-182\"><a href=\"https://noha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 15:04:52','2023-06-21 09:34:52','',141,'https://noha.in8.cdn-alpha.com/?p=185',0,'revision','',0),(186,1,'2023-06-21 15:07:11','2023-06-21 09:37:11','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-7e843572\"><li id=\"menu-item-172\"><a href=\"https://noha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://noha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://noha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://noha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-182\"><a href=\"https://noha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>\n															<img width=\"800\" height=\"283\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White.png 985w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White-300x106.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White-768x271.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-5356d617\"><li id=\"menu-item-172\"><a href=\"https://noha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://noha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://noha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://noha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-182\"><a href=\"https://noha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 15:07:11','2023-06-21 09:37:11','',141,'https://noha.in8.cdn-alpha.com/?p=186',0,'revision','',0),(187,1,'2023-06-21 15:07:11','2023-06-21 09:37:11','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-7e843572\"><li id=\"menu-item-172\"><a href=\"https://noha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://noha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://noha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://noha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-182\"><a href=\"https://noha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>\n															<img width=\"800\" height=\"283\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White.png 985w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White-300x106.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Logo-Esseine-White-768x271.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-5356d617\"><li id=\"menu-item-172\"><a href=\"https://noha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://noha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://noha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://noha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-182\"><a href=\"https://noha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 15:07:11','2023-06-21 09:37:11','',141,'https://noha.in8.cdn-alpha.com/?p=187',0,'revision','',0),(188,1,'2023-06-21 15:07:12','2023-06-21 09:37:12','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-7e843572\"><li id=\"menu-item-172\"><a href=\"https://noha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://noha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://noha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://noha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-182\"><a href=\"https://noha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 15:07:12','2023-06-21 09:37:12','',141,'https://noha.in8.cdn-alpha.com/?p=188',0,'revision','',0),(192,1,'2023-06-21 15:10:43','2023-06-21 09:40:43','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Contact Us</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-24.png\" alt=\"\" loading=\"lazy\" /></figure><h3>0083-888-567</h3>		\n			<figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-8.png\" alt=\"\" loading=\"lazy\" /></figure><h3>esseine@mail.com</h3>		\n			<figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-22.png\" alt=\"\" loading=\"lazy\" /></figure><h3>London SE1 7PB, UK</h3>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"628\" height=\"602\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png 628w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1-300x288.png 300w\" sizes=\"(max-width: 628px) 100vw, 628px\" />															\n			<h2>Get In Touch</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>','Contact Us','','publish','closed','closed','','contact-us','','','2023-06-21 17:02:03','2023-06-21 11:32:03','',0,'https://noha.in8.cdn-alpha.com/?page_id=192',0,'page','',0),(193,1,'2023-06-21 15:10:43','2023-06-21 09:40:43','','Contact Us','','inherit','closed','closed','','192-revision-v1','','','2023-06-21 15:10:43','2023-06-21 09:40:43','',192,'https://noha.in8.cdn-alpha.com/?p=193',0,'revision','',0),(195,1,'2023-06-21 15:11:37','2023-06-21 09:41:37','','Contact Us','','inherit','closed','closed','','192-revision-v1','','','2023-06-21 15:11:37','2023-06-21 09:41:37','',192,'https://noha.in8.cdn-alpha.com/?p=195',0,'revision','',0),(196,1,'2023-06-21 15:11:38','2023-06-21 09:41:38','','Contact Us','','inherit','closed','closed','','192-revision-v1','','','2023-06-21 15:11:38','2023-06-21 09:41:38','',192,'https://noha.in8.cdn-alpha.com/?p=196',0,'revision','',0),(197,1,'2023-06-21 15:11:39','2023-06-21 09:41:39','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Contact Us</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-24.png\" alt=\"\" loading=\"lazy\" /></figure><h3>0083-888-567</h3>		\n			<figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-8.png\" alt=\"\" loading=\"lazy\" /></figure><h3>esseine@mail.com</h3>		\n			<figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-22.png\" alt=\"\" loading=\"lazy\" /></figure><h3>London SE1 7PB, UK</h3>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"628\" height=\"602\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png 628w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1-300x288.png 300w\" sizes=\"(max-width: 628px) 100vw, 628px\" />															\n			<h2>Get In Touch</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->','Contact Us','','inherit','closed','closed','','192-revision-v1','','','2023-06-21 15:11:39','2023-06-21 09:41:39','',192,'https://noha.in8.cdn-alpha.com/?p=197',0,'revision','',0),(198,1,'2023-06-21 15:12:30','2023-06-21 09:42:30',' ','','','publish','closed','closed','','198','','','2023-06-21 15:12:30','2023-06-21 09:42:30','',0,'https://noha.in8.cdn-alpha.com/?p=198',5,'nav_menu_item','',0),(201,1,'2023-06-21 15:39:53','2023-06-21 10:09:53','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 15:39:53','2023-06-21 10:09:53','',139,'https://noha.in8.cdn-alpha.com/?p=201',0,'revision','',0),(202,1,'2023-06-21 15:39:54','2023-06-21 10:09:54','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 15:39:54','2023-06-21 10:09:54','',139,'https://noha.in8.cdn-alpha.com/?p=202',0,'revision','',0),(203,1,'2023-06-21 15:39:55','2023-06-21 10:09:55','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 15:39:55','2023-06-21 10:09:55','',139,'https://noha.in8.cdn-alpha.com/?p=203',0,'revision','',0),(204,1,'2023-06-21 15:41:56','2023-06-21 10:11:56','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-7e843572\"><li id=\"menu-item-172\"><a href=\"https://noha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://noha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://noha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://noha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-182\"><a href=\"https://noha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 15:41:56','2023-06-21 10:11:56','',141,'https://noha.in8.cdn-alpha.com/?p=204',0,'revision','',0),(205,1,'2023-06-21 15:41:57','2023-06-21 10:11:57','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-7e843572\"><li id=\"menu-item-172\"><a href=\"https://noha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://noha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://noha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://noha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-182\"><a href=\"https://noha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 15:41:57','2023-06-21 10:11:57','',141,'https://noha.in8.cdn-alpha.com/?p=205',0,'revision','',0),(206,1,'2023-06-21 15:41:57','2023-06-21 10:11:57','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-7e843572\"><li id=\"menu-item-172\"><a href=\"https://noha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://noha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://noha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://noha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-198\"><a href=\"https://noha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 15:41:57','2023-06-21 10:11:57','',141,'https://noha.in8.cdn-alpha.com/?p=206',0,'revision','',0),(208,1,'2023-06-21 16:02:40','2023-06-21 10:32:40','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 16:02:40','2023-06-21 10:32:40','',139,'https://noha.in8.cdn-alpha.com/?p=208',0,'revision','',0),(209,1,'2023-06-21 16:02:41','2023-06-21 10:32:41','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 16:02:41','2023-06-21 10:32:41','',139,'https://noha.in8.cdn-alpha.com/?p=209',0,'revision','',0),(210,1,'2023-06-21 16:02:42','2023-06-21 10:32:42','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 16:02:42','2023-06-21 10:32:42','',139,'https://noha.in8.cdn-alpha.com/?p=210',0,'revision','',0),(211,1,'2023-06-21 16:03:27','2023-06-21 10:33:27','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 16:03:27','2023-06-21 10:33:27','',139,'https://noha.in8.cdn-alpha.com/?p=211',0,'revision','',0),(212,1,'2023-06-21 16:03:27','2023-06-21 10:33:27','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 16:03:27','2023-06-21 10:33:27','',139,'https://noha.in8.cdn-alpha.com/?p=212',0,'revision','',0),(213,1,'2023-06-21 16:03:28','2023-06-21 10:33:28','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 16:03:28','2023-06-21 10:33:28','',139,'https://noha.in8.cdn-alpha.com/?p=213',0,'revision','',0),(214,1,'2023-06-21 16:05:35','2023-06-21 10:35:35','','Icon-01','','inherit','','closed','','icon-01','','','2023-06-21 16:05:35','2023-06-21 10:35:35','',139,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01.webp',0,'attachment','image/webp',0),(215,1,'2023-06-21 16:07:50','2023-06-21 10:37:50','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 16:07:50','2023-06-21 10:37:50','',139,'https://noha.in8.cdn-alpha.com/?p=215',0,'revision','',0),(216,1,'2023-06-21 16:07:51','2023-06-21 10:37:51','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"568\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/petik-300x243.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 16:07:51','2023-06-21 10:37:51','',139,'https://noha.in8.cdn-alpha.com/?p=216',0,'revision','',0),(217,1,'2023-06-21 16:07:52','2023-06-21 10:37:52','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 16:07:52','2023-06-21 10:37:52','',139,'https://noha.in8.cdn-alpha.com/?p=217',0,'revision','',0),(219,1,'2023-06-21 16:12:01','2023-06-21 10:42:01','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-7e843572\"><li id=\"menu-item-172\"><a href=\"https://noha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://noha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://noha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://noha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-198\"><a href=\"https://noha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 16:12:01','2023-06-21 10:42:01','',141,'https://noha.in8.cdn-alpha.com/?p=219',0,'revision','',0),(220,1,'2023-06-21 16:12:02','2023-06-21 10:42:02','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-7e843572\"><li id=\"menu-item-172\"><a href=\"https://noha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://noha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://noha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://noha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-198\"><a href=\"https://noha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 16:12:02','2023-06-21 10:42:02','',141,'https://noha.in8.cdn-alpha.com/?p=220',0,'revision','',0),(221,1,'2023-06-21 16:12:02','2023-06-21 10:42:02','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-7e843572\"><li id=\"menu-item-172\"><a href=\"https://noha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://noha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://noha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://noha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-198\"><a href=\"https://noha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','141-revision-v1','','','2023-06-21 16:12:02','2023-06-21 10:42:02','',141,'https://noha.in8.cdn-alpha.com/?p=221',0,'revision','',0),(222,1,'2023-06-21 16:14:43','2023-06-21 10:44:43','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"338\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png\" alt=\"Noha International\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-768x325.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1536x649.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-2048x866.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Home</h2>		\n			<link rel=\"stylesheet\" href=\"https://noha.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Services</h2>		\n					<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li>\n										Riverside Building, County Hall, London SE1 7PB, United Kingdom\n									</li>\n								<li>\n										+375(76) 878-76-76<br>contact@esseine.com\n									</li>\n						</ul>\n			<h2>© 2023 Noha International • All Rights Reserved</h2>','Footer','','inherit','closed','closed','','148-revision-v1','','','2023-06-21 16:14:43','2023-06-21 10:44:43','',148,'https://noha.in8.cdn-alpha.com/?p=222',0,'revision','',0),(223,1,'2023-06-21 16:14:44','2023-06-21 10:44:44','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"338\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png\" alt=\"Noha International\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-768x325.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1536x649.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-2048x866.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Home</h2>		\n			<link rel=\"stylesheet\" href=\"https://noha.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Services</h2>		\n					<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li>\n										Riverside Building, County Hall, London SE1 7PB, United Kingdom\n									</li>\n								<li>\n										+375(76) 878-76-76<br>contact@esseine.com\n									</li>\n						</ul>\n			<h2>© 2023 Noha International • All Rights Reserved</h2>','Footer','','inherit','closed','closed','','148-revision-v1','','','2023-06-21 16:14:44','2023-06-21 10:44:44','',148,'https://noha.in8.cdn-alpha.com/?p=223',0,'revision','',0),(224,1,'2023-06-21 16:14:44','2023-06-21 10:44:44','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"338\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png\" alt=\"Noha International\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-768x325.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1536x649.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-2048x866.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Home</h2>		\n			<link rel=\"stylesheet\" href=\"https://noha.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Services</h2>		\n					<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li>\n										Riverside Building, County Hall, London SE1 7PB, United Kingdom\n									</li>\n								<li>\n										+375(76) 878-76-76<br>contact@esseine.com\n									</li>\n						</ul>\n			<h2>© 2023 Noha International • All Rights Reserved</h2>','Footer','','inherit','closed','closed','','148-revision-v1','','','2023-06-21 16:14:44','2023-06-21 10:44:44','',148,'https://noha.in8.cdn-alpha.com/?p=224',0,'revision','',0),(225,1,'2023-06-21 16:15:41','2023-06-21 10:45:41','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 16:15:41','2023-06-21 10:45:41','',139,'https://noha.in8.cdn-alpha.com/?p=225',0,'revision','',0),(226,1,'2023-06-21 16:15:42','2023-06-21 10:45:42','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 16:15:42','2023-06-21 10:45:42','',139,'https://noha.in8.cdn-alpha.com/?p=226',0,'revision','',0),(227,1,'2023-06-21 16:15:43','2023-06-21 10:45:43','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 16:15:43','2023-06-21 10:45:43','',139,'https://noha.in8.cdn-alpha.com/?p=227',0,'revision','',0),(228,1,'2023-06-21 16:45:26','2023-06-21 11:15:26','','Icon-2-01','','inherit','','closed','','icon-2-01','','','2023-06-21 16:45:26','2023-06-21 11:15:26','',139,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01.webp',0,'attachment','image/webp',0),(229,1,'2023-06-21 16:46:05','2023-06-21 11:16:05','','Icon-4-01','','inherit','','closed','','icon-4-01','','','2023-06-21 16:46:05','2023-06-21 11:16:05','',139,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01.webp',0,'attachment','image/webp',0),(230,1,'2023-06-21 16:46:41','2023-06-21 11:16:41','','Icon-3-01','','inherit','','closed','','icon-3-01','','','2023-06-21 16:46:41','2023-06-21 11:16:41','',139,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01.webp',0,'attachment','image/webp',0);
INSERT INTO `wp_posts` VALUES (231,1,'2023-06-21 16:47:37','2023-06-21 11:17:37','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 16:47:37','2023-06-21 11:17:37','',139,'https://noha.in8.cdn-alpha.com/?p=231',0,'revision','',0),(232,1,'2023-06-21 16:47:38','2023-06-21 11:17:38','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted.png 896w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-300x287.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"448\" height=\"950\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted.png 448w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-4.1-Converted-141x300.png 141w\" sizes=\"(max-width: 448px) 100vw, 448px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 16:47:38','2023-06-21 11:17:38','',139,'https://noha.in8.cdn-alpha.com/?p=232',0,'revision','',0),(233,1,'2023-06-21 16:47:39','2023-06-21 11:17:39','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"639\" height=\"1024\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-639x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-639x1024.webp 639w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-187x300.webp 187w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-768x1230.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-959x1536.webp 959w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-1279x2048.webp 1279w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-scaled.webp 1598w\" sizes=\"(max-width: 639px) 100vw, 639px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"483\" height=\"1024\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-483x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-483x1024.webp 483w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-141x300.webp 141w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-768x1629.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-724x1536.webp 724w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-966x2048.webp 966w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-scaled.webp 1207w\" sizes=\"(max-width: 483px) 100vw, 483px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 16:47:39','2023-06-21 11:17:39','',139,'https://noha.in8.cdn-alpha.com/?p=233',0,'revision','',0),(234,1,'2023-06-21 17:02:01','2023-06-21 11:32:01','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Contact Us</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-24.png\" alt=\"\" loading=\"lazy\" /></figure><h3>0083-888-567</h3>		\n			<figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-8.png\" alt=\"\" loading=\"lazy\" /></figure><h3>esseine@mail.com</h3>		\n			<figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-22.png\" alt=\"\" loading=\"lazy\" /></figure><h3>London SE1 7PB, UK</h3>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"628\" height=\"602\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png 628w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1-300x288.png 300w\" sizes=\"(max-width: 628px) 100vw, 628px\" />															\n			<h2>Get In Touch</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->','Contact Us','','inherit','closed','closed','','192-revision-v1','','','2023-06-21 17:02:01','2023-06-21 11:32:01','',192,'https://noha.in8.cdn-alpha.com/?p=234',0,'revision','',0),(235,1,'2023-06-21 17:02:02','2023-06-21 11:32:02','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Contact Us</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-24.png\" alt=\"\" loading=\"lazy\" /></figure><h3>0083-888-567</h3>		\n			<figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-8.png\" alt=\"\" loading=\"lazy\" /></figure><h3>esseine@mail.com</h3>		\n			<figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-22.png\" alt=\"\" loading=\"lazy\" /></figure><h3>London SE1 7PB, UK</h3>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"628\" height=\"602\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png 628w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1-300x288.png 300w\" sizes=\"(max-width: 628px) 100vw, 628px\" />															\n			<h2>Get In Touch</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->','Contact Us','','inherit','closed','closed','','192-revision-v1','','','2023-06-21 17:02:02','2023-06-21 11:32:02','',192,'https://noha.in8.cdn-alpha.com/?p=235',0,'revision','',0),(236,1,'2023-06-21 17:02:03','2023-06-21 11:32:03','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Contact Us</h1>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-24.png\" alt=\"\" loading=\"lazy\" /></figure><h3>0083-888-567</h3>		\n			<figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-8.png\" alt=\"\" loading=\"lazy\" /></figure><h3>esseine@mail.com</h3>		\n			<figure><img width=\"512\" height=\"512\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Artboard-22.png\" alt=\"\" loading=\"lazy\" /></figure><h3>London SE1 7PB, UK</h3>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"628\" height=\"602\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1.png 628w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-1-300x288.png 300w\" sizes=\"(max-width: 628px) 100vw, 628px\" />															\n			<h2>Get In Touch</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>','Contact Us','','inherit','closed','closed','','192-revision-v1','','','2023-06-21 17:02:03','2023-06-21 11:32:03','',192,'https://noha.in8.cdn-alpha.com/?p=236',0,'revision','',0),(237,1,'2023-06-21 17:30:49','2023-06-21 12:00:49','','Icon-5-01','','inherit','','closed','','icon-5-01','','','2023-06-21 17:30:49','2023-06-21 12:00:49','',139,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-5-01.webp',0,'attachment','image/webp',0),(238,1,'2023-06-21 17:31:24','2023-06-21 12:01:24','','Icon-02','','inherit','','closed','','icon-02','','','2023-06-21 17:31:24','2023-06-21 12:01:24','',139,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-02.webp',0,'attachment','image/webp',0),(239,1,'2023-06-21 17:31:59','2023-06-21 12:01:59','','Icon-03','','inherit','','closed','','icon-03','','','2023-06-21 17:31:59','2023-06-21 12:01:59','',139,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-03.webp',0,'attachment','image/webp',0),(241,1,'2023-06-21 17:34:49','2023-06-21 12:04:49','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"639\" height=\"1024\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-639x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-639x1024.webp 639w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-187x300.webp 187w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-768x1230.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-959x1536.webp 959w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-1279x2048.webp 1279w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-scaled.webp 1598w\" sizes=\"(max-width: 639px) 100vw, 639px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"483\" height=\"1024\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-483x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-483x1024.webp 483w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-141x300.webp 141w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-768x1629.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-724x1536.webp 724w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-966x2048.webp 966w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-scaled.webp 1207w\" sizes=\"(max-width: 483px) 100vw, 483px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 17:34:49','2023-06-21 12:04:49','',139,'https://noha.in8.cdn-alpha.com/?p=241',0,'revision','',0),(242,1,'2023-06-21 17:34:49','2023-06-21 12:04:49','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"639\" height=\"1024\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-639x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-639x1024.webp 639w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-187x300.webp 187w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-768x1230.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-959x1536.webp 959w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-1279x2048.webp 1279w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-scaled.webp 1598w\" sizes=\"(max-width: 639px) 100vw, 639px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png 600w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-300x300.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"483\" height=\"1024\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-483x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-483x1024.webp 483w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-141x300.webp 141w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-768x1629.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-724x1536.webp 724w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-966x2048.webp 966w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-scaled.webp 1207w\" sizes=\"(max-width: 483px) 100vw, 483px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 17:34:49','2023-06-21 12:04:49','',139,'https://noha.in8.cdn-alpha.com/?p=242',0,'revision','',0),(243,1,'2023-06-21 17:34:50','2023-06-21 12:04:50','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"368\" height=\"370\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1.png 368w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-298x300.png 298w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4607-Massage-1-150x150.png 150w\" sizes=\"(max-width: 368px) 100vw, 368px\" />															\n			<h2>Body Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"333\" height=\"360\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1.png 333w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4606-Mask-on-Face-1-278x300.png 278w\" sizes=\"(max-width: 333px) 100vw, 333px\" />															\n			<h2>Face Treatment</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"370\" height=\"294\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Relaxtions</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus.</p>		\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"639\" height=\"1024\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-639x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-639x1024.webp 639w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-187x300.webp 187w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-768x1230.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-959x1536.webp 959w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-1279x2048.webp 1279w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-4-01-scaled.webp 1598w\" sizes=\"(max-width: 639px) 100vw, 639px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU-1536x1024.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-massage-in-spa-salon-SDSUDMU.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n			<h2>Esseine Story</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n							Cool Number\n				0\n							Cool Number\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h2>Best Treatment</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-5-01-1024x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-5-01-1024x1024.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-5-01-300x300.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-5-01-150x150.webp 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-5-01-768x768.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-5-01-1536x1536.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-5-01-2048x2048.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body Message</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-02-1024x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-02-1024x1024.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-02-300x300.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-02-150x150.webp 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-02-768x768.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-02-1536x1536.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-02-2048x2048.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Face Facial</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-03-1024x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-03-1024x1024.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-03-300x300.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-03-150x150.webp 150w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-03-768x768.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-03-1536x1536.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-03-2048x2048.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Sauna</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar.</p>		\n			<a href=\"#\">\n						Learn More\n					</a>\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"722\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1.png 1000w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-300x271.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-spa-mask-black-half-face-beauty-concept-M9ZAHJY-1-1-768x693.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"483\" height=\"1024\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-483x1024.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-483x1024.webp 483w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-141x300.webp 141w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-768x1629.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-724x1536.webp 724w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-966x2048.webp 966w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-3-01-scaled.webp 1207w\" sizes=\"(max-width: 483px) 100vw, 483px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>We are here to help you.</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis.</p>		\n			<a href=\"#\">\n						Get Information\n					</a>\n			<h2>The Esseine Beauty Team</h2>		\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/woman-cosmetologist-to-work-in-beauty-salon-PXUH8BP.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Leona Daleyza </h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxed-cosmetologist-ready-for-treating-her-patie-972WAYB.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Celine Azaleya</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"533\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-1024x682.jpg 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-300x200.jpg 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-768x512.jpg 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D.jpg 1501w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Emilie Koreina</h2>		\n		<p>Beautician</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<h2>What Clients Say</h2>		\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"649\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1024x831.webp 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-300x243.webp 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-768x623.webp 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-1536x1246.webp 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-01-2048x1662.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style>		\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-sleep-7DRHLVJ-1.jpg\" alt=\"\" loading=\"lazy\" />						\n														Maresha\n																						CEO\n							Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip.\n							<img width=\"500\" height=\"500\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/happy-cheerful-redheaded-female-relaxing-at-the-sp-MD2CY8D-2.jpg\" alt=\"\" loading=\"lazy\" />						\n														Marlina\n																						Vlogger\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg);\"  tabindex=\"0\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/relaxing-spa-procedure-YWFXDHM.jpg);\"  tabindex=\"1\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-young-woman-in-spa-salon-massage-relax-a-35YDXGC.jpg);\"  tabindex=\"2\">\n            </a>\n            <a href=\"#/\" style=\"background-image: url(https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beauty-treatment-in-spa-8KRHVMY.jpg);\"  tabindex=\"3\">\n            </a>\n        <style typr=\"text/css\">\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover {\n                        flex: 3 1 0% !important;\n                    }\n                    #eael-img-accordion-2d6a1511 .eael-image-accordion-hover:hover:hover .overlay-inner * {\n                        opacity: 1;\n                        visibility: visible;\n                        transform: none;\n                        transition: all .3s .3s;\n                    }\n                </style>','Home','','inherit','closed','closed','','139-revision-v1','','','2023-06-21 17:34:50','2023-06-21 12:04:50','',139,'https://noha.in8.cdn-alpha.com/?p=243',0,'revision','',0),(245,1,'2023-06-21 17:58:12','2023-06-21 12:28:12','','Mario','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer fringilla sollicitudin sapien a finibus. Duis fringilla lobortis aliquam. Cras volutpat risus metus, ut varius nulla pulvinar ut. ','publish','closed','closed','','mario','','','2023-06-21 17:58:12','2023-06-21 12:28:12','',0,'https://noha.in8.cdn-alpha.com/sln_attendant/mario/',0,'sln_attendant','',0),(246,1,'2023-06-21 17:58:12','2023-06-21 12:28:12','','Pablo','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer fringilla sollicitudin sapien a finibus. Duis fringilla lobortis aliquam. Cras volutpat risus metus, ut varius nulla pulvinar ut. ','publish','closed','closed','','pablo','','','2023-06-21 17:58:12','2023-06-21 12:28:12','',0,'https://noha.in8.cdn-alpha.com/sln_attendant/pablo/',0,'sln_attendant','',0),(247,1,'2023-06-21 17:58:13','2023-06-21 12:28:13','','Beard Trim','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer fringilla sollicitudin sapien a finibus. Duis fringilla lobortis aliquam. Cras volutpat risus metus, ut varius nulla pulvinar ut.','publish','closed','closed','','beard-trim','','','2023-06-21 17:58:13','2023-06-21 12:28:13','',0,'https://noha.in8.cdn-alpha.com/sln_service/beard-trim/',0,'sln_service','',0),(248,1,'2023-06-21 17:58:13','2023-06-21 12:28:13','','Haircut','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer fringilla sollicitudin sapien a finibus. Duis fringilla lobortis aliquam. Cras volutpat risus metus, ut varius nulla pulvinar ut. ','publish','closed','closed','','haircut','','','2023-06-21 17:58:13','2023-06-21 12:28:13','',0,'https://noha.in8.cdn-alpha.com/sln_service/haircut/',0,'sln_service','',0),(249,1,'2023-06-21 17:58:13','2023-06-21 12:28:13','','Shampoo','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer fringilla sollicitudin sapien a finibus. Duis fringilla lobortis aliquam. Cras volutpat risus metus, ut varius nulla pulvinar ut.','publish','closed','closed','','shampoo','','','2023-06-21 17:58:13','2023-06-21 12:28:13','',0,'https://noha.in8.cdn-alpha.com/sln_service/shampoo/',0,'sln_service','',0),(250,1,'2023-06-21 17:58:13','2023-06-21 12:28:13','[salon/]','Booking','','publish','closed','closed','','booking','','','2023-06-21 17:58:13','2023-06-21 12:28:13','',0,'https://noha.in8.cdn-alpha.com/booking/',0,'page','',0),(251,1,'2023-06-21 17:58:13','2023-06-21 12:28:13','','Thank you for booking','thank you','publish','closed','closed','','thank-you-for-booking','','','2023-06-21 17:58:13','2023-06-21 12:28:13','',0,'https://noha.in8.cdn-alpha.com/thank-you-for-booking/',0,'page','',0),(252,1,'2023-06-21 17:58:13','2023-06-21 12:28:13','[salon_booking_my_account]','Booking My Account','','publish','closed','closed','','booking-my-account','','','2023-06-21 17:58:13','2023-06-21 12:28:13','',0,'https://noha.in8.cdn-alpha.com/booking-my-account/',0,'page','',0),(253,0,'2023-06-21 17:59:32','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2023-06-21 17:59:32','2023-06-21 12:29:32','',0,'https://noha.in8.cdn-alpha.com/?post_type=sln_booking&#038;p=253',0,'sln_booking','',0),(254,1,'2023-06-22 11:49:28','2023-06-22 06:19:28','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"338\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png\" alt=\"Noha International\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-768x325.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1536x649.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-2048x866.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Home</h2>		\n			<link rel=\"stylesheet\" href=\"https://noha.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Services</h2>		\n					<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li>\n										Riverside Building, County Hall, London SE1 7PB, United Kingdom\n									</li>\n								<li>\n										+375(76) 878-76-76<br>contact@esseine.com\n									</li>\n						</ul>\n			<h2>© 2023 Noha International • All Rights Reserved</h2>','Footer','','inherit','closed','closed','','148-revision-v1','','','2023-06-22 11:49:28','2023-06-22 06:19:28','',148,'https://noha.in8.cdn-alpha.com/?p=254',0,'revision','',0),(255,1,'2023-06-22 11:49:28','2023-06-22 06:19:28','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"338\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png\" alt=\"Noha International\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-768x325.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1536x649.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-2048x866.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Home</h2>		\n			<link rel=\"stylesheet\" href=\"https://noha.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Services</h2>		\n					<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li>\n										Riverside Building, County Hall, London SE1 7PB, United Kingdom\n									</li>\n								<li>\n										+375(76) 878-76-76<br>contact@esseine.com\n									</li>\n						</ul>\n			<h2>© 2023 Noha International • All Rights Reserved</h2>','Footer','','inherit','closed','closed','','148-revision-v1','','','2023-06-22 11:49:28','2023-06-22 06:19:28','',148,'https://noha.in8.cdn-alpha.com/?p=255',0,'revision','',0),(256,1,'2023-06-22 11:49:29','2023-06-22 06:19:29','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"338\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png\" alt=\"Noha International\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-768x325.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1536x649.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-2048x866.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Home</h2>		\n			<link rel=\"stylesheet\" href=\"https://noha.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Services</h2>		\n					<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li>\n										227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\n									</li>\n								<li>\n										+375(76) 878-76-76<br>contact@esseine.com\n									</li>\n						</ul>\n			<h2>© 2023 Noha International • All Rights Reserved</h2>','Footer','','inherit','closed','closed','','148-revision-v1','','','2023-06-22 11:49:29','2023-06-22 06:19:29','',148,'https://noha.in8.cdn-alpha.com/?p=256',0,'revision','',0),(257,1,'2023-06-22 11:53:24','2023-06-22 06:23:24','','gen_logo','','inherit','','closed','','gen_logo','','','2023-06-22 11:53:24','2023-06-22 06:23:24','',0,'https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/gen_logo.png',0,'attachment','image/png',0),(259,1,'2023-09-12 15:17:41','2023-09-12 09:47:41','','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-12 15:17:41','2023-09-12 09:47:41','',167,'https://athomenoha.in8.cdn-alpha.com/?p=259',0,'revision','',0),(260,1,'2023-09-12 15:17:42','2023-09-12 09:47:42','','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-12 15:17:42','2023-09-12 09:47:42','',167,'https://athomenoha.in8.cdn-alpha.com/?p=260',0,'revision','',0),(261,1,'2023-09-12 15:17:44','2023-09-12 09:47:44','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-12 15:17:44','2023-09-12 09:47:44','',167,'https://athomenoha.in8.cdn-alpha.com/?p=261',0,'revision','',0),(262,1,'2023-09-12 15:19:12','2023-09-12 09:49:12','','At Home NOHA INTERNATIONAL','','inherit','open','closed','','at-hpr-salon','','','2023-09-12 15:20:15','2023-09-12 09:50:15','',141,'https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/at-hpr-salon.webp',0,'attachment','image/webp',0),(265,1,'2023-09-12 16:50:15','2023-09-12 11:20:15','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-12 16:50:15','2023-09-12 11:20:15','',167,'https://athomenoha.in8.cdn-alpha.com/?p=265',0,'revision','',0),(266,1,'2023-09-12 16:50:16','2023-09-12 11:20:16','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-12 16:50:16','2023-09-12 11:20:16','',167,'https://athomenoha.in8.cdn-alpha.com/?p=266',0,'revision','',0),(267,1,'2023-09-12 16:50:17','2023-09-12 11:20:17','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-12 16:50:17','2023-09-12 11:20:17','',167,'https://athomenoha.in8.cdn-alpha.com/?p=267',0,'revision','',0),(269,1,'2023-09-12 18:30:33','2023-09-12 13:00:33','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-12 18:30:33','2023-09-12 13:00:33','',167,'https://athomenoha.in8.cdn-alpha.com/?p=269',0,'revision','',0),(270,1,'2023-09-12 18:30:33','2023-09-12 13:00:33','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-12 18:30:33','2023-09-12 13:00:33','',167,'https://athomenoha.in8.cdn-alpha.com/?p=270',0,'revision','',0),(271,1,'2023-09-12 18:30:35','2023-09-12 13:00:35','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-12 18:30:35','2023-09-12 13:00:35','',167,'https://athomenoha.in8.cdn-alpha.com/?p=271',0,'revision','',0),(273,1,'2023-09-12 18:34:08','2023-09-12 13:04:08','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-12 18:34:08','2023-09-12 13:04:08','',167,'https://athomenoha.in8.cdn-alpha.com/?p=273',0,'revision','',0),(274,1,'2023-09-12 18:34:09','2023-09-12 13:04:09','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-12 18:34:09','2023-09-12 13:04:09','',167,'https://athomenoha.in8.cdn-alpha.com/?p=274',0,'revision','',0),(275,1,'2023-09-12 18:34:10','2023-09-12 13:04:10','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-12 18:34:10','2023-09-12 13:04:10','',167,'https://athomenoha.in8.cdn-alpha.com/?p=275',0,'revision','',0),(276,1,'2023-09-12 18:40:58','2023-09-12 13:10:58','','at home by noha International','','inherit','open','closed','','noha-1','','','2023-09-12 18:41:39','2023-09-12 13:11:39','',141,'https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/noha-1.webp',0,'attachment','image/webp',0),(277,1,'2023-09-12 18:41:48','2023-09-12 13:11:48','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-7e843572\"><li id=\"menu-item-172\"><a href=\"https://noha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://noha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://noha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://noha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-198\"><a href=\"https://noha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','141-revision-v1','','','2023-09-12 18:41:48','2023-09-12 13:11:48','',141,'https://athomenoha.in8.cdn-alpha.com/?p=277',0,'revision','',0),(278,1,'2023-09-12 18:41:49','2023-09-12 13:11:49','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"339\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png\" alt=\"\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1024x434.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-768x326.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-1536x651.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1-2048x868.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-7e843572\"><li id=\"menu-item-172\"><a href=\"https://noha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://noha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://noha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://noha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-198\"><a href=\"https://noha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','141-revision-v1','','','2023-09-12 18:41:49','2023-09-12 13:11:49','',141,'https://athomenoha.in8.cdn-alpha.com/?p=278',0,'revision','',0),(279,1,'2023-09-12 18:41:50','2023-09-12 13:11:50','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"170\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/noha-1.webp\" alt=\"at home by noha International\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/noha-1.webp 500w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/noha-1-300x102.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n					Menu\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-7e843572\"><li id=\"menu-item-172\"><a href=\"https://athomenoha.in8.cdn-alpha.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-173\"><a href=\"https://athomenoha.in8.cdn-alpha.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-175\"><a href=\"https://athomenoha.in8.cdn-alpha.com/services/\" class = \"hfe-menu-item\">Services</a></li>\n<li id=\"menu-item-174\"><a href=\"https://athomenoha.in8.cdn-alpha.com/faqs/\" class = \"hfe-menu-item\">FAQs</a></li>\n<li id=\"menu-item-198\"><a href=\"https://athomenoha.in8.cdn-alpha.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>','Header','','inherit','closed','closed','','141-revision-v1','','','2023-09-12 18:41:50','2023-09-12 13:11:50','',141,'https://athomenoha.in8.cdn-alpha.com/?p=279',0,'revision','',0),(280,1,'2023-09-13 10:18:55','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-09-13 10:18:55','0000-00-00 00:00:00','',0,'https://athomenoha.in8.cdn-alpha.com/?p=280',0,'post','',0),(281,1,'2023-09-13 11:02:50','2023-09-13 05:32:50','','at home noha international','','inherit','open','closed','','at-home-noha-international','','','2023-09-13 11:03:05','2023-09-13 05:33:05','',148,'https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/at-home-noha-international.webp',0,'attachment','image/webp',0),(282,1,'2023-09-13 11:03:18','2023-09-13 05:33:18','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"338\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png\" alt=\"Noha International\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-768x325.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1536x649.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-2048x866.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Home</h2>		\n			<link rel=\"stylesheet\" href=\"https://noha.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Services</h2>		\n					<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li>\n										227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\n									</li>\n								<li>\n										+375(76) 878-76-76<br>contact@esseine.com\n									</li>\n						</ul>\n			<h2>© 2023 Noha International • All Rights Reserved</h2>','Footer','','inherit','closed','closed','','148-revision-v1','','','2023-09-13 11:03:18','2023-09-13 05:33:18','',148,'https://athomenoha.in8.cdn-alpha.com/?p=282',0,'revision','',0),(283,1,'2023-09-13 11:03:19','2023-09-13 05:33:19','<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"338\" src=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png\" alt=\"Noha International\" loading=\"lazy\" srcset=\"https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1024x433.png 1024w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-300x127.png 300w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-768x325.png 768w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-1536x649.png 1536w, https://noha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Noha-International-2048x866.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.14.0 - 18-06-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Home</h2>		\n			<link rel=\"stylesheet\" href=\"https://noha.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Services</h2>		\n					<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li>\n										227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\n									</li>\n								<li>\n										+375(76) 878-76-76<br>contact@esseine.com\n									</li>\n						</ul>\n			<h2>© 2023 Noha International • All Rights Reserved</h2>','Footer','','inherit','closed','closed','','148-revision-v1','','','2023-09-13 11:03:19','2023-09-13 05:33:19','',148,'https://athomenoha.in8.cdn-alpha.com/?p=283',0,'revision','',0),(284,1,'2023-09-13 11:03:20','2023-09-13 05:33:20','<style>/*! elementor - v3.16.0 - 12-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"500\" height=\"170\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/at-home-noha-international.webp\" alt=\"at home noha international\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/at-home-noha-international.webp 500w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/at-home-noha-international-300x102.webp 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<style>/*! elementor - v3.16.0 - 12-09-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n											</a>\n			<style>/*! elementor - v3.16.0 - 12-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Home</h2>		\n			<link rel=\"stylesheet\" href=\"https://athomenoha.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Services</h2>		\n					<ul>\n							<li>\n										About Us\n									</li>\n								<li>\n										Services\n									</li>\n								<li>\n										Pricing\n									</li>\n								<li>\n										Package\n									</li>\n						</ul>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li>\n										227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\n									</li>\n								<li>\n										+375(76) 878-76-76<br>contact@esseine.com\n									</li>\n						</ul>\n			<h2>© 2023 Noha International • All Rights Reserved</h2>','Footer','','inherit','closed','closed','','148-revision-v1','','','2023-09-13 11:03:20','2023-09-13 05:33:20','',148,'https://athomenoha.in8.cdn-alpha.com/?p=284',0,'revision','',0),(286,1,'2023-09-15 11:55:12','2023-09-15 06:25:12','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-15 11:55:12','2023-09-15 06:25:12','',167,'https://athomenoha.in8.cdn-alpha.com/?p=286',0,'revision','',0),(287,1,'2023-09-15 11:55:13','2023-09-15 06:25:13','<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.15.0 - 20-08-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-15 11:55:13','2023-09-15 06:25:13','',167,'https://athomenoha.in8.cdn-alpha.com/?p=287',0,'revision','',0),(288,1,'2023-09-15 11:55:14','2023-09-15 06:25:14','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-15 11:55:14','2023-09-15 06:25:14','',167,'https://athomenoha.in8.cdn-alpha.com/?p=288',0,'revision','',0),(289,1,'2023-09-15 12:10:12','2023-09-15 06:40:12','','placeholder-54.png','','inherit','open','closed','','placeholder-54-png','','','2023-09-15 12:10:12','2023-09-15 06:40:12','',0,'https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/placeholder-54.png',0,'attachment','image/png',0),(290,1,'2023-09-15 12:10:14','2023-09-15 06:40:14','','image-accordion-7.jpg','','inherit','open','closed','','image-accordion-7-jpg','','','2023-09-15 12:10:14','2023-09-15 06:40:14','',0,'https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/image-accordion-7.jpg',0,'attachment','image/jpeg',0),(291,1,'2023-09-15 12:10:14','2023-09-15 06:40:14','','image-accordion-14.jpg','','inherit','open','closed','','image-accordion-14-jpg','','','2023-09-15 12:10:14','2023-09-15 06:40:14','',0,'https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/image-accordion-14.jpg',0,'attachment','image/jpeg',0),(292,1,'2023-09-15 12:10:14','2023-09-15 06:40:14','','image-accordion-10.jpg','','inherit','open','closed','','image-accordion-10-jpg','','','2023-09-15 12:10:14','2023-09-15 06:40:14','',0,'https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/image-accordion-10.jpg',0,'attachment','image/jpeg',0),(294,1,'2023-09-15 12:41:53','2023-09-15 07:11:53','','Noha Web Creative','','inherit','open','closed','','noha-web-creative','','','2023-09-15 12:41:53','2023-09-15 07:11:53','',167,'https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative.webp',0,'attachment','image/webp',0),(295,1,'2023-09-15 13:38:07','2023-09-15 08:08:07','','Noha Web Creative (1)','','inherit','open','closed','','noha-web-creative-1','','','2023-09-15 13:38:07','2023-09-15 08:08:07','',167,'https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp',0,'attachment','image/webp',0),(296,1,'2023-09-15 13:38:26','2023-09-15 08:08:26','','Noha Web Creative (2)','','inherit','open','closed','','noha-web-creative-2','','','2023-09-15 13:38:26','2023-09-15 08:08:26','',167,'https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp',0,'attachment','image/webp',0),(297,1,'2023-09-15 14:35:00','2023-09-15 09:05:00','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-15 14:35:00','2023-09-15 09:05:00','',167,'https://athomenoha.in8.cdn-alpha.com/?p=297',0,'revision','',0),(298,1,'2023-09-15 14:35:01','2023-09-15 09:05:01','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-15 14:35:01','2023-09-15 09:05:01','',167,'https://athomenoha.in8.cdn-alpha.com/?p=298',0,'revision','',0),(299,1,'2023-09-15 14:35:03','2023-09-15 09:05:03','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Parlor At Home</h2>				\n					<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.</p>\n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        Premium Services\n                    </h3>\n                        Do you know the Elementor image box height? Offering the best image box wordpress plugin.                    \n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h5>\n                        Basic Services \n                    </h5>\n                        Do you know how to add image box in Wordpress website with elementary. Download Elementskit.                    \n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-15 14:35:03','2023-09-15 09:05:03','',167,'https://athomenoha.in8.cdn-alpha.com/?p=299',0,'revision','',0),(300,1,'2023-09-15 14:51:29','2023-09-15 09:21:29','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Parlor At Home</h2>				\n					<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.</p>\n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        Premium Services\n                    </h3>\n                        Do you know the Elementor image box height? Offering the best image box wordpress plugin.                    \n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h5>\n                        Basic Services \n                    </h5>\n                        Do you know how to add image box in Wordpress website with elementary. Download Elementskit.                    \n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-15 14:51:29','2023-09-15 09:21:29','',167,'https://athomenoha.in8.cdn-alpha.com/?p=300',0,'revision','',0),(301,1,'2023-09-15 14:51:30','2023-09-15 09:21:30','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Parlor At Home</h2>				\n					<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.</p>\n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        Premium Services\n                    </h3>\n                        Do you know the Elementor image box height? Offering the best image box wordpress plugin.                    \n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h5>\n                        Basic Services \n                    </h5>\n                        Do you know how to add image box in Wordpress website with elementary. Download Elementskit.                    \n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-15 14:51:30','2023-09-15 09:21:30','',167,'https://athomenoha.in8.cdn-alpha.com/?p=301',0,'revision','',0),(302,1,'2023-09-15 14:51:31','2023-09-15 09:21:31','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Parlor At Home</h2>				\n					<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.</p>\n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        Premium Services\n                    </h3>\n                        Indulge in opulent pampering at our premium parlor services.                    \n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h5>\n                        Basic Services \n                    </h5>\n                        Elevate your style with essential salon treatments and pampering.                    \n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-15 14:51:31','2023-09-15 09:21:31','',167,'https://athomenoha.in8.cdn-alpha.com/?p=302',0,'revision','',0),(304,1,'2023-09-15 15:01:27','2023-09-15 09:31:27','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Parlor At Home</h2>				\n					<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.</p>\n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        Premium Services\n                    </h3>\n                        Indulge in opulent pampering at our premium parlor services.                    \n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h5>\n                        Basic Services \n                    </h5>\n                        Elevate your style with essential salon treatments and pampering.                    \n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-15 15:01:27','2023-09-15 09:31:27','',167,'https://athomenoha.in8.cdn-alpha.com/?p=304',0,'revision','',0),(305,1,'2023-09-15 15:01:28','2023-09-15 09:31:28','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Parlor At Home</h2>				\n					<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.</p>\n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        Premium Services\n                    </h3>\n                        Indulge in opulent pampering at our premium parlor services.                    \n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h5>\n                        Basic Services \n                    </h5>\n                        Elevate your style with essential salon treatments and pampering.                    \n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-15 15:01:28','2023-09-15 09:31:28','',167,'https://athomenoha.in8.cdn-alpha.com/?p=305',0,'revision','',0),(306,1,'2023-09-15 15:01:29','2023-09-15 09:31:29','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Parlor At Home</h2>				\n					<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.</p>\n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        Premium Services\n                    </h3>\n                        Indulge in opulent pampering at our premium parlor services.                    \n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h5>\n                        Basic Services \n                    </h5>\n                        Elevate your style with essential salon treatments and pampering.                    \n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-15 15:01:29','2023-09-15 09:31:29','',167,'https://athomenoha.in8.cdn-alpha.com/?p=306',0,'revision','',0),(307,1,'2023-09-15 15:02:03','2023-09-15 09:32:03','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Parlor At Home</h2>				\n					<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.</p>\n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        Premium Services\n                    </h3>\n                        Indulge in opulent pampering at our premium parlor services.                    \n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h5>\n                        Basic Services \n                    </h5>\n                        Elevate your style with essential salon treatments and pampering.                    \n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-15 15:02:03','2023-09-15 09:32:03','',167,'https://athomenoha.in8.cdn-alpha.com/?p=307',0,'revision','',0),(308,1,'2023-09-15 15:02:04','2023-09-15 09:32:04','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Parlor At Home</h2>				\n					<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.</p>\n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        Premium Services\n                    </h3>\n                        Indulge in opulent pampering at our premium parlor services.                    \n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h5>\n                        Basic Services \n                    </h5>\n                        Elevate your style with essential salon treatments and pampering.                    \n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-15 15:02:04','2023-09-15 09:32:04','',167,'https://athomenoha.in8.cdn-alpha.com/?p=308',0,'revision','',0),(309,1,'2023-09-15 15:02:05','2023-09-15 09:32:05','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1024x978.webp 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-300x287.webp 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-768x734.webp 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-1536x1467.webp 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/Icon-2-01-2048x1956.webp 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Love Yourself With Beauty Treatment</h1>		\n		<p>Experience luxurious beauty treatments in the comfort of your home with our expert services. Elevate your beauty effortlessly.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<a href=\"#\">\n						Login Now\n					</a>\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"674\" height=\"620\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2.png 674w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-line-drawing-white-jasmine-flower-illustrations-FF57E82-2020-06-29-2-300x276.png 300w\" sizes=\"(max-width: 674px) 100vw, 674px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"700\" height=\"886\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1.png 700w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/portrait-beautiful-young-woman-with-clean-fresh-sk-7ACXDQG-1-237x300.png 237w\" sizes=\"(max-width: 700px) 100vw, 700px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Parlor At Home</h2>				\n					<p>We will transform your living space into a luxurious parlor at home, where relaxation and style meet in perfect harmony.</p>\n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-1-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        Premium Services\n                    </h3>\n                        Indulge in opulent pampering at our premium parlor services.                    \n                    <img width=\"483\" height=\"460\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2.webp 483w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/09/Noha-Web-Creative-2-300x286.webp 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h5>\n                        Basic Services \n                    </h5>\n                        Elevate your style with essential salon treatments and pampering.                    \n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-7.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Face Facial </h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-3.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Lomilomi Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-2.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Wellness Relaxing</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-6.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Detoxifying</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-5.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Body Massage</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n			<figure><img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07.png\" alt=\"\" loading=\"lazy\" /></figure><h3>Sauna</h3><p>Lorem ipsum dolor sit amet consectetur adipiscing.</p>		\n															<img width=\"800\" height=\"533\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-1024x682.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-setting-GTFJWQ4.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"570\" height=\"344\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.png 570w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x181.png 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h2>Beauty Services Are Our Priority</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-progress{text-align:left}.elementor-progress-wrapper{position:relative;background-color:#eee;color:#fff;height:100%;border-radius:2px}.elementor-progress-bar{display:flex;background-color:#69727d;width:0;font-size:11px;height:30px;line-height:30px;border-radius:2px;transition:width 1s ease-in-out}.elementor-progress-text{flex-grow:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding-left:15px}.elementor-progress-percentage{padding-right:15px}.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar{background-color:#5bc0de}.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar{background-color:#5cb85c}.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar{background-color:#f0ad4e}.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar{background-color:#d9534f}.elementor-progress .elementor-title{display:block}@media (max-width:767px){.elementor-progress-text{padding-left:10px}}.e-con-inner .elementor-progress-wrapper,.e-con .elementor-progress-wrapper{height:auto}</style>\n				Body Treatment\n									88%\n				Face Treatment\n									95%\n				Relaxtions\n									79%\n			<h2>Treatment Package</h2>		\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-8-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Basic SPA Package</h2>		\n			<h2>$40</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"370\" height=\"294\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers.png 370w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/4625-Floating-Flowers-300x238.png 300w\" sizes=\"(max-width: 370px) 100vw, 370px\" />															\n			<h2>Premium SPA Package</h2>		\n			<h2>$76</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"600\" height=\"600\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9.png 600w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-300x300.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-50-spa-line-green-black-icons-EGVMGU-2017-12-07-9-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />															\n			<h2>Standard SPA Package</h2>		\n			<h2>$56</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						Booking Now\n					</a>\n															<img width=\"800\" height=\"764\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted.png 896w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-300x287.png 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1-Converted-768x734.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Our Blog</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>		\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-eye-logo-VXUKND-2018-11-20-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-relax-resort-logo-template-GF6XU7-2019-02-17-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-rose-flower-logo-Q83854-2017-10-29-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />															\n															<img width=\"568\" height=\"508\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11.png 568w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/elements-wellness-logo-template-XG9DU8Z-2020-12-11-300x268.png 300w\" sizes=\"(max-width: 568px) 100vw, 568px\" />','Services','','inherit','closed','closed','','167-revision-v1','','','2023-09-15 15:02:05','2023-09-15 09:32:05','',167,'https://athomenoha.in8.cdn-alpha.com/?p=309',0,'revision','',0),(310,1,'2023-09-15 15:07:12','2023-09-15 09:37:12','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Pricing</h1>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>\nFace Facial</h2>		\n			<h2>$ 26</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Detoxifying</h2>		\n			<h2>$ 23</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Lomilomi Massage</h2>		\n			<h2>$ 32</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body Massage</h2>		\n			<h2>$ 21</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Wellness Relaxing</h2>		\n			<h2>$ 22</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Sauna</h2>		\n			<h2>$ 34</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>Pricing Question</h2>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>','Premium Services','','publish','closed','closed','','premium-services','','','2023-09-15 18:55:51','2023-09-15 13:25:51','',0,'https://athomenoha.in8.cdn-alpha.com/?page_id=310',0,'page','',0),(311,1,'2023-09-15 15:07:12','2023-09-15 09:37:12','','Premium Services','','inherit','closed','closed','','310-revision-v1','','','2023-09-15 15:07:12','2023-09-15 09:37:12','',310,'https://athomenoha.in8.cdn-alpha.com/?p=311',0,'revision','',0),(313,1,'2023-09-15 18:55:49','2023-09-15 13:25:49','','Premium Services','','inherit','closed','closed','','310-revision-v1','','','2023-09-15 18:55:49','2023-09-15 13:25:49','',310,'https://athomenoha.in8.cdn-alpha.com/?p=313',0,'revision','',0),(314,1,'2023-09-15 18:55:50','2023-09-15 13:25:50','','Premium Services','','inherit','closed','closed','','310-revision-v1','','','2023-09-15 18:55:50','2023-09-15 13:25:50','',310,'https://athomenoha.in8.cdn-alpha.com/?p=314',0,'revision','',0),(315,1,'2023-09-15 18:55:51','2023-09-15 13:25:51','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Pricing</h1>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>\nFace Facial</h2>		\n			<h2>$ 26</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Detoxifying</h2>		\n			<h2>$ 23</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Lomilomi Massage</h2>		\n			<h2>$ 32</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body Massage</h2>		\n			<h2>$ 21</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Wellness Relaxing</h2>		\n			<h2>$ 22</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Sauna</h2>		\n			<h2>$ 34</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit Ut elit tellus.</p>		\n			<a href=\"#\">\n						Book Now\n					</a>\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>Pricing Question</h2>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>','Premium Services','','inherit','closed','closed','','310-revision-v1','','','2023-09-15 18:55:51','2023-09-15 13:25:51','',310,'https://athomenoha.in8.cdn-alpha.com/?p=315',0,'revision','',0),(316,1,'2023-09-15 18:56:57','2023-09-15 13:26:57','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Basic Services</h1>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Cut</h2>		\n		<p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Color</h2>		\n		<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Spa</h2>		\n		<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Straightening</h2>		\n		<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body And Head Massage</h2>		\n		<p>Prices for Body Scrub, Head Massage with Aroma/Olive Oil.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Threading</h2>		\n		<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"931\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg 859w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-258x300.jpg 258w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-768x894.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Facial</h2>		\n		<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Clean Up</h2>		\n		<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Bleach And Detan</h2>		\n		<p>Price list for body and facial beauty treatments and services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Waxing</h2>		\n		<p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Manicure And Pedicure</h2>		\n		<p>Price list for foot and nail treatments, including massages and manicures.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Makeup</h2>		\n		<p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates</p>		\n			<a href=\"#\">\n						Open\n					</a>\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>Pricing Question</h2>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>','Basic Services','','publish','closed','closed','','basic-services','','','2023-09-18 12:15:48','2023-09-18 06:45:48','',0,'https://athomenoha.in8.cdn-alpha.com/?page_id=316',0,'page','',0),(317,1,'2023-09-15 18:56:57','2023-09-15 13:26:57','','Basic Services','','inherit','closed','closed','','316-revision-v1','','','2023-09-15 18:56:57','2023-09-15 13:26:57','',316,'https://athomenoha.in8.cdn-alpha.com/?p=317',0,'revision','',0),(319,1,'2023-09-15 19:39:24','2023-09-15 14:09:24','','Basic Services','','inherit','closed','closed','','316-revision-v1','','','2023-09-15 19:39:24','2023-09-15 14:09:24','',316,'https://athomenoha.in8.cdn-alpha.com/?p=319',0,'revision','',0),(320,1,'2023-09-15 19:39:24','2023-09-15 14:09:24','','Basic Services','','inherit','closed','closed','','316-revision-v1','','','2023-09-15 19:39:24','2023-09-15 14:09:24','',316,'https://athomenoha.in8.cdn-alpha.com/?p=320',0,'revision','',0),(321,1,'2023-09-15 19:39:25','2023-09-15 14:09:25','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Basic Services</h1>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Cut</h2>		\n			<h2>$ 26</h2>		\n		<p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Color</h2>		\n			<h2>$ 23</h2>		\n		<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Spa</h2>		\n		<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Straightening</h2>		\n		<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body And Head Massage</h2>		\n		<p>Prices for Body Scrub, Head Massage with Aroma/Olive Oil.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Threading</h2>		\n		<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Facial</h2>		\n		<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Clean Up</h2>		\n		<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Bleach And Detan</h2>		\n		<p>Price list for body and facial beauty treatments and services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Waxing</h2>		\n		<p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Manicure And Pedicure</h2>		\n		<p>Price list for foot and nail treatments, including massages and manicures.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Makeup</h2>		\n		<p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates</p>		\n			<a href=\"#\">\n						Open\n					</a>\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>Pricing Question</h2>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>','Basic Services','','inherit','closed','closed','','316-revision-v1','','','2023-09-15 19:39:25','2023-09-15 14:09:25','',316,'https://athomenoha.in8.cdn-alpha.com/?p=321',0,'revision','',0),(322,1,'2023-09-15 20:28:51','2023-09-15 14:58:51','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Basic Services</h1>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Cut</h2>		\n			<h2>$ 26</h2>		\n		<p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Color</h2>		\n			<h2>$ 23</h2>		\n		<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Spa</h2>		\n		<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Straightening</h2>		\n		<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body And Head Massage</h2>		\n		<p>Prices for Body Scrub, Head Massage with Aroma/Olive Oil.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Threading</h2>		\n		<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Facial</h2>		\n		<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Clean Up</h2>		\n		<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Bleach And Detan</h2>		\n		<p>Price list for body and facial beauty treatments and services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Waxing</h2>		\n		<p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Manicure And Pedicure</h2>		\n		<p>Price list for foot and nail treatments, including massages and manicures.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Makeup</h2>		\n		<p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates</p>		\n			<a href=\"#\">\n						Open\n					</a>\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>Pricing Question</h2>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>','Basic Services','','inherit','closed','closed','','316-revision-v1','','','2023-09-15 20:28:51','2023-09-15 14:58:51','',316,'https://athomenoha.in8.cdn-alpha.com/?p=322',0,'revision','',0),(323,1,'2023-09-15 20:28:51','2023-09-15 14:58:51','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Basic Services</h1>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Cut</h2>		\n			<h2>$ 26</h2>		\n		<p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Color</h2>		\n			<h2>$ 23</h2>		\n		<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Spa</h2>		\n		<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Straightening</h2>		\n		<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body And Head Massage</h2>		\n		<p>Prices for Body Scrub, Head Massage with Aroma/Olive Oil.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Threading</h2>		\n		<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Facial</h2>		\n		<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Clean Up</h2>		\n		<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Bleach And Detan</h2>		\n		<p>Price list for body and facial beauty treatments and services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Waxing</h2>		\n		<p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Manicure And Pedicure</h2>		\n		<p>Price list for foot and nail treatments, including massages and manicures.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Makeup</h2>		\n		<p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates</p>		\n			<a href=\"#\">\n						Open\n					</a>\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>Pricing Question</h2>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>','Basic Services','','inherit','closed','closed','','316-revision-v1','','','2023-09-15 20:28:51','2023-09-15 14:58:51','',316,'https://athomenoha.in8.cdn-alpha.com/?p=323',0,'revision','',0),(324,1,'2023-09-15 20:28:52','2023-09-15 14:58:52','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Basic Services</h1>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Cut</h2>		\n		<p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Color</h2>		\n		<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Spa</h2>		\n		<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Straightening</h2>		\n		<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body And Head Massage</h2>		\n		<p>Prices for Body Scrub, Head Massage with Aroma/Olive Oil.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Threading</h2>		\n		<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Facial</h2>		\n		<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Clean Up</h2>		\n		<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Bleach And Detan</h2>		\n		<p>Price list for body and facial beauty treatments and services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Waxing</h2>		\n		<p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Manicure And Pedicure</h2>		\n		<p>Price list for foot and nail treatments, including massages and manicures.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Makeup</h2>		\n		<p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates</p>		\n			<a href=\"#\">\n						Open\n					</a>\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>Pricing Question</h2>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>','Basic Services','','inherit','closed','closed','','316-revision-v1','','','2023-09-15 20:28:52','2023-09-15 14:58:52','',316,'https://athomenoha.in8.cdn-alpha.com/?p=324',0,'revision','',0),(326,1,'2023-09-15 22:10:09','2023-09-15 16:40:09','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Basic Services</h1>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Cut</h2>		\n		<p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Color</h2>		\n		<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Spa</h2>		\n		<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Straightening</h2>		\n		<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body And Head Massage</h2>		\n		<p>Prices for Body Scrub, Head Massage with Aroma/Olive Oil.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Threading</h2>		\n		<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Facial</h2>		\n		<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Clean Up</h2>		\n		<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Bleach And Detan</h2>		\n		<p>Price list for body and facial beauty treatments and services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Waxing</h2>		\n		<p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Manicure And Pedicure</h2>		\n		<p>Price list for foot and nail treatments, including massages and manicures.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Makeup</h2>		\n		<p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates</p>		\n			<a href=\"#\">\n						Open\n					</a>\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>Pricing Question</h2>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>','Basic Services','','inherit','closed','closed','','316-revision-v1','','','2023-09-15 22:10:09','2023-09-15 16:40:09','',316,'https://athomenoha.in8.cdn-alpha.com/?p=326',0,'revision','',0),(327,1,'2023-09-15 22:10:09','2023-09-15 16:40:09','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Basic Services</h1>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Cut</h2>		\n		<p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Color</h2>		\n		<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Spa</h2>		\n		<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Straightening</h2>		\n		<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body And Head Massage</h2>		\n		<p>Prices for Body Scrub, Head Massage with Aroma/Olive Oil.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Threading</h2>		\n		<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Facial</h2>		\n		<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Clean Up</h2>		\n		<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Bleach And Detan</h2>		\n		<p>Price list for body and facial beauty treatments and services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Waxing</h2>		\n		<p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Manicure And Pedicure</h2>		\n		<p>Price list for foot and nail treatments, including massages and manicures.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Makeup</h2>		\n		<p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates</p>		\n			<a href=\"#\">\n						Open\n					</a>\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>Pricing Question</h2>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>','Basic Services','','inherit','closed','closed','','316-revision-v1','','','2023-09-15 22:10:09','2023-09-15 16:40:09','',316,'https://athomenoha.in8.cdn-alpha.com/?p=327',0,'revision','',0),(328,1,'2023-09-15 22:10:11','2023-09-15 16:40:11','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Basic Services</h1>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Cut</h2>		\n		<p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Color</h2>		\n		<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Spa</h2>		\n		<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Straightening</h2>		\n		<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body And Head Massage</h2>		\n		<p>Prices for Body Scrub, Head Massage with Aroma/Olive Oil.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Threading</h2>		\n		<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"931\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg 859w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-258x300.jpg 258w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-768x894.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Facial</h2>		\n		<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Clean Up</h2>		\n		<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Bleach And Detan</h2>		\n		<p>Price list for body and facial beauty treatments and services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Waxing</h2>		\n		<p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Manicure And Pedicure</h2>		\n		<p>Price list for foot and nail treatments, including massages and manicures.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Makeup</h2>		\n		<p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates</p>		\n			<a href=\"#\">\n						Open\n					</a>\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>Pricing Question</h2>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>','Basic Services','','inherit','closed','closed','','316-revision-v1','','','2023-09-15 22:10:11','2023-09-15 16:40:11','',316,'https://athomenoha.in8.cdn-alpha.com/?p=328',0,'revision','',0),(330,1,'2023-09-18 12:15:46','2023-09-18 06:45:46','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Basic Services</h1>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Cut</h2>		\n		<p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Color</h2>		\n		<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Spa</h2>		\n		<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Straightening</h2>		\n		<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body And Head Massage</h2>		\n		<p>Prices for Body Scrub, Head Massage with Aroma/Olive Oil.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Threading</h2>		\n		<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"931\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg 859w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-258x300.jpg 258w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-768x894.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Facial</h2>		\n		<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Clean Up</h2>		\n		<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Bleach And Detan</h2>		\n		<p>Price list for body and facial beauty treatments and services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Waxing</h2>		\n		<p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Manicure And Pedicure</h2>		\n		<p>Price list for foot and nail treatments, including massages and manicures.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Makeup</h2>		\n		<p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates</p>		\n			<a href=\"#\">\n						Open\n					</a>\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>Pricing Question</h2>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>','Basic Services','','inherit','closed','closed','','316-revision-v1','','','2023-09-18 12:15:46','2023-09-18 06:45:46','',316,'https://athomenoha.in8.cdn-alpha.com/?p=330',0,'revision','',0),(331,1,'2023-09-18 12:15:47','2023-09-18 06:45:47','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Basic Services</h1>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Cut</h2>		\n		<p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Color</h2>		\n		<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Spa</h2>		\n		<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Straightening</h2>		\n		<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body And Head Massage</h2>		\n		<p>Prices for Body Scrub, Head Massage with Aroma/Olive Oil.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Threading</h2>		\n		<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"931\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg 859w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-258x300.jpg 258w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-768x894.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Facial</h2>		\n		<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Clean Up</h2>		\n		<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Bleach And Detan</h2>		\n		<p>Price list for body and facial beauty treatments and services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Waxing</h2>		\n		<p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Manicure And Pedicure</h2>		\n		<p>Price list for foot and nail treatments, including massages and manicures.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Makeup</h2>		\n		<p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates</p>		\n			<a href=\"#\">\n						Open\n					</a>\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>Pricing Question</h2>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>','Basic Services','','inherit','closed','closed','','316-revision-v1','','','2023-09-18 12:15:47','2023-09-18 06:45:47','',316,'https://athomenoha.in8.cdn-alpha.com/?p=331',0,'revision','',0),(332,1,'2023-09-18 12:15:48','2023-09-18 06:45:48','<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Basic Services</h1>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Cut</h2>		\n		<p>Haircut, Shampoo, Shave, Styling, Blow Dry, Iron, Trim Pricing Menu.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/afro-woman-receiving-therapy-with-hot-stones-8K5XAQM-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Color</h2>		\n		<p>Hair color options: touch-up, highlights, streaks, global, without ammonia. Prices.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Spa</h2>		\n		<p>Affordable prices for Loreal and Wella Hair Spa, Dandruff, Hair Loss treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/massage-therapist-in-white-uniform-making-spa-trea-XFTM49X-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Hair Straightening</h2>		\n		<p>Price list for hair smoothing, rebonding, keratin, and cysteine treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Body And Head Massage</h2>		\n		<p>Prices for Body Scrub, Head Massage with Aroma/Olive Oil.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Threading</h2>		\n		<p>Thread for perfect eyebrows, lips, forehead, chin, and full-face beauty.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"931\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M.jpg 859w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-258x300.jpg 258w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/face-peeling-mask-spa-beauty-treatment-skincare-FNHBX4M-768x894.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Facial</h2>		\n		<p>Prices for O3 Plus, Lotus, Depigmentation, Anti-Aging, and Acne Treatments.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Clean Up</h2>		\n		<p>Prices for O3 Plus, Lotus, Gold, and Diamond Cleanup services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Bleach And Detan</h2>		\n		<p>Price list for body and facial beauty treatments and services.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Waxing</h2>		\n		<p>Rica Wax, Under Arm Wax,Full Body Wax,Leg wax, Back, Face, Lip &amp; Chin Wax Rate Card.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-girl-in-the-spa-hotel-PGVT9EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Manicure And Pedicure</h2>		\n		<p>Price list for foot and nail treatments, including massages and manicures.</p>		\n			<a href=\"#\">\n						Open\n					</a>\n															<img width=\"800\" height=\"800\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK.jpg 800w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-300x300.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-150x150.jpg 150w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spring-spa-setting-PQSX3EK-768x768.jpg 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Makeup</h2>		\n		<p>Airbrush, HD, MAC, Bridal Makeup, Groom Makeup , Party Makeup,Engagement makeup Rates</p>		\n			<a href=\"#\">\n						Open\n					</a>\n			<h2>Subscribe To Our Newsletter</h2>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1024x683.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-768x512.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5-1536x1025.jpg 1536w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/spa-in-the-background-4BT6SD5.jpg 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"800\" height=\"534\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-1024x684.jpg 1024w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-300x200.jpg 300w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3-768x513.jpg 768w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/beautiful-woman-lying-on-massage-table-in-spa-PA3ZZD3.jpg 1420w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n															<img width=\"437\" height=\"700\" src=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png\" alt=\"\" loading=\"lazy\" srcset=\"https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted.png 437w, https://athomenoha.in8.cdn-alpha.com/wp-content/uploads/2023/06/jasmine-flowers-white-1.2-Converted-187x300.png 187w\" sizes=\"(max-width: 437px) 100vw, 437px\" />															\n			<h2>Pricing Question</h2>		\n			<style>/*! elementor - v3.16.0 - 14-09-2023 */\n.elementor-accordion{text-align:left}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style>		\n												<a tabindex=\"0\">How did you find out about our salon?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should you shave before a spa treatment?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">Should i wear a bathing suit?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n												<a tabindex=\"0\">What other essentials should i bring?</a>\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>','Basic Services','','inherit','closed','closed','','316-revision-v1','','','2023-09-18 12:15:48','2023-09-18 06:45:48','',316,'https://athomenoha.in8.cdn-alpha.com/?p=332',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(9,2,0),(32,3,0),(45,2,0),(47,2,0),(54,3,0),(63,2,0),(66,3,0),(68,2,0),(70,2,0),(79,3,0),(100,3,0),(106,3,0),(113,3,0),(119,3,0),(124,3,0),(132,2,0),(135,3,0),(172,4,0),(173,4,0),(174,4,0),(175,4,0),(198,4,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','sitemanager'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"f994c238cfdb56b61bdca8bc413001668730636dbd31dc3df53457b039e872fb\";a:4:{s:10:\"expiration\";i:1695139828;s:2:\"ip\";s:12:\"172.69.94.12\";s:2:\"ua\";s:110:\"Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36\";s:5:\"login\";i:1694967028;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','4'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"172.69.95.0\";}'),(19,1,'bsf-optin-notice','notice-dismissed'),(20,1,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2023-06-21T08:58:06.749Z\";}'),(21,1,'elementor_introduction','a:4:{s:27:\"ai-get-started-announcement\";b:1;s:7:\"exit_to\";b:1;s:20:\"globals_introduction\";b:1;s:6:\"e-apps\";b:1;}'),(22,1,'announcements_user_counter','1'),(23,1,'hfe-popup','dismissed'),(24,1,'header-footer-elementor-rating','delayed-notice'),(25,1,'wp_user-settings','libraryContent=browse&editor=tinymce'),(26,1,'wp_user-settings-time','1687346823'),(27,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(28,1,'metaboxhidden_nav-menus','a:2:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";}'),(29,1,'nav_menu_recently_edited','4'),(30,1,'_assistants_mode','false');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'sitemanager','$P$BIAOT2Dh5Y0yljZNWW44RRN.qEfSJD0','sitemanager','wp@dxpsites.com','https://noha.in8.cdn-alpha.com','2023-06-20 07:06:35','',0,'sitemanager');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2024-06-01 21:04:01

Oncology-Injection – Affy Pharma Pvt Ltd

Arrange A Callback
[]
1 Step 1
Full Name
Telephone
Departmentyour full name
Postal Address
Message
0 /
Previous
Next
Shopping Basket